[Win32k]
authorJames Tabor <james.tabor@reactos.org>
Tue, 29 May 2012 11:57:24 +0000 (11:57 +0000)
committerJames Tabor <james.tabor@reactos.org>
Tue, 29 May 2012 11:57:24 +0000 (11:57 +0000)
- 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

index 4cf28cd..5c12688 100644 (file)
@@ -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