From ebe2e6eb347ff26e2e663ecae67003d831ca76db Mon Sep 17 00:00:00 2001 From: James Tabor Date: Tue, 29 May 2012 11:57:24 +0000 Subject: [PATCH] [Win32k] - Don't check for send nonclient paint messages and bump up the paint count. This may spell the end of the PAINTING BUG spam. svn path=/trunk/; revision=56673 --- reactos/win32ss/user/ntuser/painting.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactos/win32ss/user/ntuser/painting.c b/reactos/win32ss/user/ntuser/painting.c index 4cf28cd9d06..5c12688599b 100644 --- a/reactos/win32ss/user/ntuser/painting.c +++ b/reactos/win32ss/user/ntuser/painting.c @@ -594,8 +594,7 @@ IntIsWindowDirty(PWND Wnd) { return ( Wnd->style & WS_VISIBLE && ( Wnd->hrgnUpdate != NULL || - Wnd->state & WNDS_INTERNALPAINT || - Wnd->state & WNDS_SENDNCPAINT ) ); + Wnd->state & WNDS_INTERNALPAINT ) ); } PWND FASTCALL