From: James Tabor Date: Sat, 10 Oct 2015 10:10:15 +0000 (+0000) Subject: [Win32k] X-Git-Tag: ReactOS-0.4.0~570 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=89eae28ca7b1272ebb4745896108cb32b45bf0ab [Win32k] - Fix repaint from off screen. See CORE-10098. svn path=/trunk/; revision=69478 --- diff --git a/reactos/win32ss/user/ntuser/nonclient.c b/reactos/win32ss/user/ntuser/nonclient.c index 3c9aaa645de..1cf3265e2c5 100644 --- a/reactos/win32ss/user/ntuser/nonclient.c +++ b/reactos/win32ss/user/ntuser/nonclient.c @@ -497,7 +497,7 @@ DefWndDoSizeMove(PWND pwnd, WORD wParam) // Only the windows that overlap will be redrawn. if (RECTL_bIntersectRect( &rect, &pwnd->rcWindow, &pwndTemp->rcWindow )) { - co_UserRedrawWindow( pwndTemp, NULL, NULL, RDW_UPDATENOW | RDW_NOCHILDREN); + co_UserRedrawWindow( pwndTemp, NULL, NULL, RDW_UPDATENOW | RDW_ALLCHILDREN); } } }