winex11.drv: Comment out the XCloseDisplay call on process detach.

It has a tendency to trigger X11 bugs, and it's not really useful anyway.
This commit is contained in:
Alexandre Julliard 2006-08-03 19:29:44 +02:00
parent be37e95105
commit 145e06040d
1 changed files with 2 additions and 2 deletions

View File

@ -108,8 +108,8 @@ static void device_init(void)
void X11DRV_GDI_Finalize(void)
{
X11DRV_PALETTE_Cleanup();
XCloseDisplay( gdi_display );
gdi_display = NULL;
/* don't bother to close the display, it often triggers X bugs */
/* XCloseDisplay( gdi_display ); */
}
/**********************************************************************