Commit 86aa0491 authored by Anatoly Lyutin's avatar Anatoly Lyutin Committed by Alexandre Julliard

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

parent 2177e492
......@@ -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 )
......
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