From 89eae28ca7b1272ebb4745896108cb32b45bf0ab Mon Sep 17 00:00:00 2001 From: James Tabor Date: Sat, 10 Oct 2015 10:10:15 +0000 Subject: [PATCH] [Win32k] - Fix repaint from off screen. See CORE-10098. svn path=/trunk/; revision=69478 --- reactos/win32ss/user/ntuser/nonclient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } } -- 2.17.1