From 201339345df4021936488c3c13345a456f13e2ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 26 Aug 2021 23:27:39 +0200 Subject: [PATCH] window-list: Only show at the end of the overview transition gnome-shell now considers the work area in the overview, so popping up at the beginning of the overview transition is now more jarring than at the end. Part-of: --- extensions/window-list/extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js index 599b64b3..b97a2820 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -778,7 +778,7 @@ class WindowList extends St.Widget { this._updateKeyboardAnchor(); }); - this._overviewHidingId = Main.overview.connect('hiding', () => { + this._overviewHidingId = Main.overview.connect('hidden', () => { this.visible = !Main.layoutManager.primaryMonitor.inFullscreen; this._updateKeyboardAnchor(); });