mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Ensure WindowData minimized/maximized are mutually exclusive
The window manager can break the assumption that
fullscreen/maximized/minimized values are mutually exclusive.
(cherry picked from commit e4d052e284)
This commit is contained in:
parent
bab96e71d2
commit
28012c40fb
1 changed files with 2 additions and 2 deletions
|
|
@ -3483,8 +3483,8 @@ void DisplayServerX11::_window_changed(XEvent *event) {
|
||||||
|
|
||||||
// Query display server about a possible new window state.
|
// Query display server about a possible new window state.
|
||||||
wd.fullscreen = _window_fullscreen_check(window_id);
|
wd.fullscreen = _window_fullscreen_check(window_id);
|
||||||
wd.minimized = _window_minimize_check(window_id);
|
wd.maximized = _window_maximize_check(window_id, "_NET_WM_STATE") && !wd.fullscreen;
|
||||||
wd.maximized = _window_maximize_check(window_id, "_NET_WM_STATE");
|
wd.minimized = _window_minimize_check(window_id) && !wd.fullscreen && !wd.maximized;
|
||||||
|
|
||||||
{
|
{
|
||||||
//the position in xconfigure is not useful here, obtain it manually
|
//the position in xconfigure is not useful here, obtain it manually
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue