Commit 155710ce authored by Bill Medland's avatar Bill Medland Committed by Alexandre Julliard

SetWindowPos sends WM_WINDOWPOSCHANGED even if it has been told not to

send WM_WINDOWPOSCHANGING.
parent 6a28adb4
......@@ -1030,9 +1030,9 @@ BOOL X11DRV_SetWindowPos( WINDOWPOS *winpos )
TRACE("\tstatus flags = %04x\n", winpos->flags & SWP_AGG_STATUSFLAGS);
if (((winpos->flags & SWP_AGG_STATUSFLAGS) != SWP_AGG_NOPOSCHANGE) &&
!(winpos->flags & SWP_NOSENDCHANGING))
if (((winpos->flags & SWP_AGG_STATUSFLAGS) != SWP_AGG_NOPOSCHANGE))
SendMessageA( winpos->hwnd, WM_WINDOWPOSCHANGED, 0, (LPARAM)winpos );
/* WM_WINDOWPOSCHANGED is send even if SWP_NOSENDCHANGING is set */
return TRUE;
}
......
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