Fix window size in X11 when window manager refuses to resize

(cherry picked from commit a67ae8eed57f4545c739e6eb3a4b8c1169d3afbc)
This commit is contained in:
Le Philousophe 2023-02-18 18:21:09 +01:00 committed by Sam Lantinga
parent f741adc86c
commit 74e8a6451b

View file

@ -979,6 +979,10 @@ void X11_SetWindowSize(_THIS, SDL_Window *window)
} }
if (SDL_TICKS_PASSED(SDL_GetTicks(), timeout)) { 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; break;
} }