mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[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
This commit is contained in:
parent
5e6927ddd1
commit
ebe2e6eb34
1 changed files with 1 additions and 2 deletions
|
@ -594,8 +594,7 @@ IntIsWindowDirty(PWND Wnd)
|
||||||
{
|
{
|
||||||
return ( Wnd->style & WS_VISIBLE &&
|
return ( Wnd->style & WS_VISIBLE &&
|
||||||
( Wnd->hrgnUpdate != NULL ||
|
( Wnd->hrgnUpdate != NULL ||
|
||||||
Wnd->state & WNDS_INTERNALPAINT ||
|
Wnd->state & WNDS_INTERNALPAINT ) );
|
||||||
Wnd->state & WNDS_SENDNCPAINT ) );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PWND FASTCALL
|
PWND FASTCALL
|
||||||
|
|
Loading…
Reference in a new issue