Mark dc brushes in GreGetSetColorTable as dirty
Fixes gdi32_winetest bitmap regression

svn path=/trunk/; revision=56547
This commit is contained in:
Timo Kreuzer 2012-05-09 08:08:09 +00:00
parent 505334785a
commit 1dc1e5db8e

View file

@ -1044,6 +1044,10 @@ GreGetSetColorTable(
ppal->IndexedColors[i].peGreen = prgbColors->rgbGreen;
ppal->IndexedColors[i].peBlue = prgbColors->rgbBlue;
}
/* Mark the dc brushes invalid */
pdc->pdcattr->ulDirty_ |= DIRTY_FILL|DIRTY_LINE|
DIRTY_BACKGROUND|DIRTY_TEXT;
}
else
{