From 46bdee35c313a8a5d0f4217ef1bcbad056ce0a61 Mon Sep 17 00:00:00 2001 From: Zach Gorman Date: Mon, 19 Jul 2004 21:21:40 +0000 Subject: [PATCH] Set the top_popup global variable to zero in MENU_ExitTracking(), fixing MENU_IsMenuActive() and therefore VK_F1 WM_HELP message generation. --- controls/menu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/controls/menu.c b/controls/menu.c index a612418f0a8..916e3023086 100644 --- a/controls/menu.c +++ b/controls/menu.c @@ -2869,6 +2869,7 @@ static BOOL MENU_ExitTracking(HWND hWnd) SendMessageW( hWnd, WM_EXITMENULOOP, 0, 0 ); ShowCaret(0); + top_popup = 0; return TRUE; }