x11drv: We really need to flush the display when destroying a window.

This commit is contained in:
Alexandre Julliard 2006-05-09 17:32:40 +02:00
parent 5f9e9836cf
commit 975f1b2a61
1 changed files with 2 additions and 0 deletions

View File

@ -736,6 +736,8 @@ static void destroy_whole_window( Display *display, struct x11drv_win_data *data
XUnsetICFocus( data->xic );
XDestroyIC( data->xic );
}
/* Outlook stops processing messages after destroying a dialog, so we need an explicit flush */
XFlush( display );
wine_tsx11_unlock();
RemovePropA( data->hwnd, whole_window_prop );
}