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

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