winex11: Wait for the client window to be created on the server side.

This commit is contained in:
Alexandre Julliard 2013-03-04 13:34:28 +01:00
parent f15a5ff70f
commit 4391deb930
1 changed files with 1 additions and 1 deletions

View File

@ -1394,7 +1394,7 @@ Window create_client_window( struct x11drv_win_data *data, const XVisualInfo *vi
XSaveContext( data->display, data->client_window, winContext, (char *)data->hwnd );
XMapWindow( data->display, data->client_window );
XFlush( data->display );
XSync( data->display, False );
return data->client_window;
}