mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
x11: Don't mess with fullscreen vs maximized window state on unmapped windows.
This commit is contained in:
parent
dddd6a5a9a
commit
a4627c5eda
@ -1208,8 +1208,10 @@ X11_SetWindowFullscreenViaWM(_THIS, SDL_Window * window, SDL_VideoDisplay * _dis
|
|||||||
|
|
||||||
/* Fullscreen windows sometimes end up being marked maximized by
|
/* Fullscreen windows sometimes end up being marked maximized by
|
||||||
window managers. Force it back to how we expect it to be. */
|
window managers. Force it back to how we expect it to be. */
|
||||||
if (!fullscreen && (window->flags & SDL_WINDOW_MAXIMIZED) == 0) {
|
if (X11_IsWindowMapped(_this, window)) {
|
||||||
SetWindowMaximized(_this, window, SDL_FALSE);
|
if (!fullscreen && ((window->flags & SDL_WINDOW_MAXIMIZED) == 0)) {
|
||||||
|
SetWindowMaximized(_this, window, SDL_FALSE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
X11_XFlush(display);
|
X11_XFlush(display);
|
||||||
|
Loading…
Reference in New Issue
Block a user