Set the top_popup global variable to zero in MENU_ExitTracking(),

fixing MENU_IsMenuActive() and therefore VK_F1 WM_HELP message
generation.
This commit is contained in:
Zach Gorman 2004-07-19 21:21:40 +00:00 committed by Alexandre Julliard
parent 2e13bf774e
commit 46bdee35c3
1 changed files with 1 additions and 0 deletions

View File

@ -2869,6 +2869,7 @@ static BOOL MENU_ExitTracking(HWND hWnd)
SendMessageW( hWnd, WM_EXITMENULOOP, 0, 0 );
ShowCaret(0);
top_popup = 0;
return TRUE;
}