From 4cb18f57ea208f43b9b6ccfde9bc3c5897f9b72e Mon Sep 17 00:00:00 2001 From: Qihang Gao Date: Fri, 7 Aug 2026 16:39:52 +0800 Subject: [PATCH] MdeModulePkg/BootMaintenanceManagerUiLib: Change numeric step to 1 Set the numeric step to 1 to allow +/- key adjustment. Signed-off-by: Qihang Gao --- .../BootMaintenanceManagerCustomizedUiSupport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c index 7cfbf5aac0..864c8d777b 100644 --- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c +++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootMaintenanceManagerCustomizedUiSupport.c @@ -131,7 +131,7 @@ BmmCreateTimeOutMenu ( EFI_IFR_NUMERIC_SIZE_2 | EFI_IFR_DISPLAY_UINT_DEC, 0, 65535, - 0, + 1, NULL ); }