Commit 975f1b2a authored by Alexandre Julliard's avatar Alexandre Julliard

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

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