You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Fixes #103522 Persistent window state doesn't work if your window is 'tiled' in X11 gnome 3.x checks for `horz && vert`4396e98834/platform/x11/os_x11.cpp (L1708)4.x also checked `horz && vert` until this change where it was switched to `horz || vert`524f061c01 (diff-05f85bc3bf96d384f6b96260c758e63e10bbdd52b04f8ccb34649372e7bc1f48R1382)The corrected logic is: Check `horz && vert` for 'is_maximized' Check `horz || vert` for 'can_maximize'