Wait for the window to be visible before mouse warping

This fixes the hang during fullscreen startup on my system (the motion
events weren't being generated because there was no window to see the
motion).
This commit is contained in:
Bill Currie 2019-07-10 22:18:51 +09:00
parent d5cb432911
commit 203d981675

View file

@ -574,10 +574,11 @@ X11_CreateWindow (int width, int height)
X11_WaitForEvent (ConfigureNotify);
vid_context_created = true;
XRaiseWindow (x_disp, x_win);
X11_WaitForEvent (VisibilityNotify);
if (vid_fullscreen->int_val) {
X11_UpdateFullscreen (vid_fullscreen);
}
XRaiseWindow (x_disp, x_win);
}
void