From 34cebf2810850ad069d1cb37511682fea5884144 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Mon, 1 Sep 2025 11:47:36 +0200 Subject: [PATCH] Allow editing boot options using 'e' key --- xtldr/textui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtldr/textui.c b/xtldr/textui.c index a9d4bb5c..ec000b1b 100644 --- a/xtldr/textui.c +++ b/xtldr/textui.c @@ -458,9 +458,9 @@ BlDisplayEditMenu(IN PXTBL_BOOTMENU_ITEM MenuEntry) BlReadKeyStroke(&Key); /* 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]; BlGetBootOptionValue(MenuEntry->Options, OptionName, &OriginalValue);