From ab9aa5b1f2a976a8a155dcddb9996a33246c4b63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 2 Oct 2020 19:26:46 +0200 Subject: [PATCH] workspacesView: Update workspace visibility when entering overview This was missed in commit 96f63b08c24 when splitting the combined layout+scrolling method into allocation and translation. Add it back to prevent windows from other windows leaking into view during the transition. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3208 --- js/ui/workspacesView.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/workspacesView.js b/js/ui/workspacesView.js index 3b38bee02..b97bf5a4c 100644 --- a/js/ui/workspacesView.js +++ b/js/ui/workspacesView.js @@ -141,6 +141,7 @@ class WorkspacesView extends WorkspacesViewBase { this._workspaces[w].fadeToOverview(); } this._updateScrollPosition(); + this._updateVisibility(); } animateFromOverview(animationType) {