From b9443c9a14fe52166d202944f479d01c84eadf46 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 21 Apr 2008 20:31:14 +0200 Subject: [PATCH] user32: Invalide DCEs also when resizing a hidden window, or when minimizing. --- dlls/user32/winpos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c index 4a793522dab..78749a9758b 100644 --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -1909,8 +1909,8 @@ BOOL set_window_pos( HWND hwnd, HWND insert_after, UINT swp_flags, USER_Driver->pSetWindowPos( hwnd, insert_after, swp_flags, window_rect, client_rect, &visible_rect, valid_rects ); - if ((((swp_flags & SWP_AGG_NOPOSCHANGE) != SWP_AGG_NOPOSCHANGE) && (new_style & WS_VISIBLE)) || - (swp_flags & (SWP_HIDEWINDOW | SWP_SHOWWINDOW))) + if (((swp_flags & SWP_AGG_NOPOSCHANGE) != SWP_AGG_NOPOSCHANGE) || + (swp_flags & (SWP_HIDEWINDOW | SWP_SHOWWINDOW | SWP_STATECHANGED))) invalidate_dce( hwnd, &old_window_rect ); } return ret;