From 382cbe101b6dd9b1e300b3ffbfac6fa83f6d61fa Mon Sep 17 00:00:00 2001 From: Peter Fajdiga Date: Fri, 25 Aug 2023 13:58:43 +0200 Subject: [PATCH] Window: unset fullscreen before unmaximizing --- src/layout/Window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/Window.ts b/src/layout/Window.ts index 2a33264..3b05767 100644 --- a/src/layout/Window.ts +++ b/src/layout/Window.ts @@ -61,8 +61,8 @@ class Window { if (this.isFocused()) { return; } - this.client.setMaximize(false, false); this.client.setFullScreen(false); + this.client.setMaximize(false, false); this.column.grid.desktop.onLayoutChanged(); }