Blame SOURCES/0001-window-list-Leave-fake-overview-when-destroyed.patch

8cc781
From ee25c2aac70b86f31c91f6491dad4c67a59bc261 Mon Sep 17 00:00:00 2001
8cc781
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
8cc781
Date: Tue, 26 Jan 2021 21:14:47 +0100
8cc781
Subject: [PATCH] window-list: Leave "fake overview" when destroyed
8cc781
8cc781
Otherwise we leave an incomplete overview-like state around, which
8cc781
can cause issues later when the extension is re-enabled (for example
8cc781
when coming back from screen lock).
8cc781
8cc781
https://bugzilla.redhat.com/show_bug.cgi?id=1904371
8cc781
---
8cc781
 extensions/window-list/windowPicker.js | 2 ++
8cc781
 1 file changed, 2 insertions(+)
8cc781
8cc781
diff --git a/extensions/window-list/windowPicker.js b/extensions/window-list/windowPicker.js
8cc781
index 12a7627..afb5d27 100644
8cc781
--- a/extensions/window-list/windowPicker.js
8cc781
+++ b/extensions/window-list/windowPicker.js
8cc781
@@ -210,6 +210,8 @@ var WindowPicker = class {
8cc781
     }
8cc781
 
8cc781
     _onDestroy() {
8cc781
+        this._fakeOverviewVisible(false);
8cc781
+
8cc781
         if (this._monitorsChangedId)
8cc781
             Main.layoutManager.disconnect(this._monitorsChangedId);
8cc781
         this._monitorsChangedId = 0;
8cc781
-- 
8cc781
2.31.1
8cc781