From 7ee7d3a83f9d9b1ab926aad25e86aadbdca78662 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 26 Sep 2012 12:14:03 +0200 Subject: [PATCH] winex11: Recreate the graphics context when setting the drawable. --- dlls/winex11.drv/init.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/winex11.drv/init.c b/dlls/winex11.drv/init.c index a876d39a440..d6b45d8e8fa 100644 --- a/dlls/winex11.drv/init.c +++ b/dlls/winex11.drv/init.c @@ -334,6 +334,9 @@ static INT X11DRV_ExtEscape( PHYSDEV dev, INT escape, INT in_count, LPCVOID in_d const struct x11drv_escape_set_drawable *data = in_data; physDev->dc_rect = data->dc_rect; physDev->drawable = data->drawable; + XFreeGC( gdi_display, physDev->gc ); + physDev->gc = XCreateGC( gdi_display, physDev->drawable, 0, NULL ); + XSetGraphicsExposures( gdi_display, physDev->gc, False ); XSetSubwindowMode( gdi_display, physDev->gc, data->mode ); TRACE( "SET_DRAWABLE hdc %p drawable %lx dc_rect %s\n", dev->hdc, physDev->drawable, wine_dbgstr_rect(&physDev->dc_rect) ); -- 2.11.4.GIT