From 5ec6daa8e565ecb803955004dc9d5fb269f63a63 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: (cherry picked from commit a3ff3c79b20caa285670d50e998ca007ce04375a) --- 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 a768d735..7ceaff44 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -1035,9 +1035,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);