Commit 55165f87 authored by Alexandre Julliard's avatar Alexandre Julliard

user32: Pass the modified SetWindowPos flags to the set_window_pos server request.

parent ea563709
...@@ -1675,7 +1675,7 @@ BOOL USER_SetWindowPos( WINDOWPOS * winpos ) ...@@ -1675,7 +1675,7 @@ BOOL USER_SetWindowPos( WINDOWPOS * winpos )
SWP_DoNCCalcSize( winpos, &newWindowRect, &newClientRect, valid_rects ); SWP_DoNCCalcSize( winpos, &newWindowRect, &newClientRect, valid_rects );
if (!set_window_pos( winpos->hwnd, winpos->hwndInsertAfter, orig_flags, if (!set_window_pos( winpos->hwnd, winpos->hwndInsertAfter, winpos->flags,
&newWindowRect, &newClientRect, valid_rects )) &newWindowRect, &newClientRect, valid_rects ))
return FALSE; return FALSE;
......
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