Explorar o código

x11: Use XSync when changing window position instead of XFlush.

Attempt to fix regression in Bugzilla #4646.
Ryan C. Gordon %!s(int64=6) %!d(string=hai) anos
pai
achega
39563b7bfa
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/video/x11/SDL_x11window.c

+ 1 - 1
src/video/x11/SDL_x11window.c

@@ -810,7 +810,7 @@ X11_SetWindowPosition(_THIS, SDL_Window * window)
 
     /*Attempt to move the window*/
     X11_XMoveWindow(display, data->xwindow, window->x - data->border_left, window->y - data->border_top);
-    X11_XFlush(display);
+    X11_XSync(display, False);
 
     /*If the window is not moved, then the coordinates on the window structure are out of sync, so we
       update them here. */