Author: tkreuzer
Date: Wed Dec 31 16:22:23 2014
New Revision: 65920

URL: http://svn.reactos.org/svn/reactos?rev=65920&view=rev
Log:
[WIN32K]
Mark RAO region as dirty in NtGdiSelectBitmap, hopefully fixes CORE-8989

Modified:
    trunk/reactos/win32ss/gdi/ntgdi/dcobjs.c

Modified: trunk/reactos/win32ss/gdi/ntgdi/dcobjs.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/ntgdi/dcobjs.c?rev=65920&r1=65919&r2=65920&view=diff
==============================================================================
--- trunk/reactos/win32ss/gdi/ntgdi/dcobjs.c    [iso-8859-1] (original)
+++ trunk/reactos/win32ss/gdi/ntgdi/dcobjs.c    [iso-8859-1] Wed Dec 31 
16:22:23 2014
@@ -471,7 +471,7 @@
     }
 
     /* Mark the DC brushes invalid */
-    pdc->pdcattr->ulDirty_ |= DIRTY_FILL | DIRTY_LINE;
+    pdc->pdcattr->ulDirty_ |= DIRTY_FILL | DIRTY_LINE | DC_FLAG_DIRTY_RAO;
 
     /* Update the system region */
     REGION_SetRectRgn(pdc->prgnVis,


Reply via email to