user32: Allow sent WM_CANCELMODE to end menu tracking in a window's menu bar.
This commit is contained in:
parent
d64793f17b
commit
effc28e16e
|
@ -2429,7 +2429,7 @@ void MENU_EndMenu( HWND hwnd )
|
||||||
{
|
{
|
||||||
POPUPMENU *menu;
|
POPUPMENU *menu;
|
||||||
menu = top_popup_hmenu ? MENU_GetMenu( top_popup_hmenu ) : NULL;
|
menu = top_popup_hmenu ? MENU_GetMenu( top_popup_hmenu ) : NULL;
|
||||||
if (menu && hwnd == menu->hwndOwner) EndMenu();
|
if (menu && (hwnd == menu->hWnd || hwnd == menu->hwndOwner)) EndMenu();
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
|
|
Loading…
Reference in New Issue