From a3ff3c79b20caa285670d50e998ca007ce04375a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 16 Jun 2025 23:34:07 +0200 Subject: [PATCH] Revert "window-list: Fix initial visibility" Since we no longer track fullscreen state in the overview, the workaround is no longer necessary. This reverts commit 6ee4205f1e60858b20a1f9492b34800265841a5c. Part-of: --- extensions/window-list/extension.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js index 2f1c2340..9e16b262 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -1033,9 +1033,6 @@ class WindowList extends St.Widget { }, this); global.display.connectObject('in-fullscreen-changed', () => { - // Work-around for initial change from unknown to !fullscreen - if (Main.overview.visible) - this.hide(); this._updateKeyboardAnchor(); }, this);