user32: mdi: Fix switch with wParam in WM_SYSCOMMAND processing.

This commit is contained in:
Anatoly Lyutin 2007-05-14 20:42:32 +04:00 committed by Alexandre Julliard
parent 2177e492e6
commit 86aa0491d6
1 changed files with 1 additions and 1 deletions

View File

@ -1498,7 +1498,7 @@ LRESULT WINAPI DefMDIChildProcW( HWND hwnd, UINT message,
return 0;
case WM_SYSCOMMAND:
switch( wParam )
switch (wParam & 0xfff0)
{
case SC_MOVE:
if( ci->hwndChildMaximized == hwnd )