mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-09 01:15:26 +00:00
Fix window size in X11 when window manager refuses to resize
(cherry picked from commit a67ae8eed57f4545c739e6eb3a4b8c1169d3afbc)
This commit is contained in:
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue