Commit 6174bccf authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

We need to at least refresh the window menu in ChildActivate, so for

now remove the 'is already activated' optimization.
parent cc02d954
...@@ -559,11 +559,6 @@ static LONG MDI_ChildActivate( HWND client, HWND child ) ...@@ -559,11 +559,6 @@ static LONG MDI_ChildActivate( HWND client, HWND child )
clientInfo = get_client_info( client ); clientInfo = get_client_info( client );
/* Don't activate if it is already active. Might happen
since ShowWindow DOES activate MDI children */
if (clientInfo->hwndActiveChild == child)
return 0;
TRACE("%p\n", child); TRACE("%p\n", child);
isActiveFrameWnd = (GetActiveWindow() == GetParent(client)); isActiveFrameWnd = (GetActiveWindow() == GetParent(client));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment