- Fix repaint from off screen. See CORE-10098.

svn path=/trunk/; revision=69478
This commit is contained in:
James Tabor 2015-10-10 10:10:15 +00:00
parent ecba06ffa2
commit 89eae28ca7

View file

@ -497,7 +497,7 @@ DefWndDoSizeMove(PWND pwnd, WORD wParam)
// Only the windows that overlap will be redrawn. // Only the windows that overlap will be redrawn.
if (RECTL_bIntersectRect( &rect, &pwnd->rcWindow, &pwndTemp->rcWindow )) 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);
} }
} }
} }