Fix restoring window from fullscreen to normal on Linux

This commit is contained in:
Yuri Roubinsky 2020-02-03 17:15:24 +03:00
parent d5b579852f
commit 8737269275

View file

@ -1429,7 +1429,7 @@ void OS_X11::set_window_fullscreen(bool p_enabled) {
set_window_maximized(true);
}
set_wm_fullscreen(p_enabled);
if (!p_enabled && !current_videomode.always_on_top) {
if (!p_enabled && current_videomode.always_on_top) {
// Restore
set_window_maximized(false);
}