From c50193115544b7326b710f345c3e3f000371c2ec 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 4d6e4d96..3a682012 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -824,9 +824,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);