Commit a9b78672 authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: ExtFloodFill does take the current ROP into account.

parent dedd9fe2
......@@ -1377,9 +1377,7 @@ BOOL X11DRV_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT fillTy
{
unsigned long pixel = X11DRV_PALETTE_ToPhysical( physDev, color );
/* ROP mode is always GXcopy for flood-fill */
wine_tsx11_lock();
XSetFunction( gdi_display, physDev->gc, GXcopy );
X11DRV_InternalFloodFill(image, physDev,
pt.x - rect.left,
pt.y - rect.top,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment