mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-05-28 11:57:24 +08:00
Fix window size in X11 when window manager refuses to resize
(cherry picked from commit a67ae8eed5)
This commit is contained in:
committed by
Sam Lantinga
parent
f741adc86c
commit
74e8a6451b
@@ -979,6 +979,10 @@ void X11_SetWindowSize(_THIS, SDL_Window *window)
|
||||
}
|
||||
|
||||
if (SDL_TICKS_PASSED(SDL_GetTicks(), timeout)) {
|
||||
/* Timeout occurred and window size didn't change
|
||||
* wwindow manager likely denied the resize. */
|
||||
window->w = orig_w;
|
||||
window->h = orig_h;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user