forked from xt-sys/exectos
Allow editing boot options using 'e' key
This commit is contained in:
parent
0fa4a175e0
commit
34cebf2810
@ -458,9 +458,9 @@ BlDisplayEditMenu(IN PXTBL_BOOTMENU_ITEM MenuEntry)
|
|||||||
BlReadKeyStroke(&Key);
|
BlReadKeyStroke(&Key);
|
||||||
|
|
||||||
/* Check key press scan code */
|
/* Check key press scan code */
|
||||||
if(Key.UnicodeChar == 0x0D)
|
if(Key.UnicodeChar == 0x0D || Key.UnicodeChar == 0x65)
|
||||||
{
|
{
|
||||||
/* ENTER key pressed, edit the highlighted option */
|
/* ENTER or 'e' key pressed, edit the highlighted option */
|
||||||
OptionName = EditableOptions[HighligtedOptionId];
|
OptionName = EditableOptions[HighligtedOptionId];
|
||||||
BlGetBootOptionValue(MenuEntry->Options, OptionName, &OriginalValue);
|
BlGetBootOptionValue(MenuEntry->Options, OptionName, &OriginalValue);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user