From 55165f87cce88e6b49f2436ef0f9d7dc12e25285 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 20 Feb 2008 14:41:09 +0100 Subject: [PATCH] user32: Pass the modified SetWindowPos flags to the set_window_pos server request. --- dlls/user32/winpos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c index 4da5d286550..daebe7c2e6e 100644 --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -1675,7 +1675,7 @@ BOOL USER_SetWindowPos( WINDOWPOS * winpos ) 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 )) return FALSE; -- 2.11.4.GIT