Author: jimtabor
Date: Tue May 29 11:57:24 2012
New Revision: 56673

URL: http://svn.reactos.org/svn/reactos?rev=56673&view=rev
Log:
[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.

Modified:
    trunk/reactos/win32ss/user/ntuser/painting.c

Modified: trunk/reactos/win32ss/user/ntuser/painting.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/painting.c?rev=56673&r1=56672&r2=56673&view=diff
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/painting.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/painting.c [iso-8859-1] Tue May 29 
11:57:24 2012
@@ -594,8 +594,7 @@
 {
    return ( Wnd->style & WS_VISIBLE &&
            ( Wnd->hrgnUpdate != NULL ||
-             Wnd->state & WNDS_INTERNALPAINT ||
-             Wnd->state & WNDS_SENDNCPAINT ) );
+             Wnd->state & WNDS_INTERNALPAINT ) );
 }
 
 PWND FASTCALL


Reply via email to