From ed6f352b62233c155abf446f57d2b9dc7a6b1e87 Mon Sep 17 00:00:00 2001 From: Sergey Vlasov Date: Thu, 4 Jun 2009 19:14:48 +0400 Subject: simple menu: make ONTIMEOUT work with MENU HIDDEN The command invoked when no keys were pressed for the specified time (ONTIMEOUT) may be different from the menu item initially selected when the menu is displayed (DEFAULT or MENU DEFAULT). Unfortunately, this did not work together with MENU HIDDEN (which is exactly the case when having a separate ONTIMEOUT command makes the most sense). Signed-off-by: Sergey Vlasov Signed-off-by: H. Peter Anvin --- NEWS | 1 + com32/menu/menumain.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 70563f72..bdc46cbc 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,7 @@ Changes in 3.82: * ISOLINUX: deal with systems which return from INT 13h with interrupts disabled. * Do not invoke the idle handler during large file loads. + * Simple menu: make ONTIMEOUT work with MENU HIDDEN. Changes in 3.81: * Shuffler: fix bug in real-mode entry. This affected a diff --git a/com32/menu/menumain.c b/com32/menu/menumain.c index 81780eac..e5b6eb90 100644 --- a/com32/menu/menumain.c +++ b/com32/menu/menumain.c @@ -700,6 +700,8 @@ do_hidden_menu(void) } } + if (cm->ontimeout) + return cm->ontimeout; return cm->menu_entries[cm->defentry]->cmdline; /* Default entry */ } -- cgit v1.2.1