Blame SOURCES/0001-window-list-workspace-indicator-Set-reactiveness-of-.patch

f6a177
From 4e8db57a1c6a205e50b864ed9bebc9a25cfc12ae Mon Sep 17 00:00:00 2001
f6a177
From: =?UTF-8?q?Jonas=20=C3=85dahl?= <jadahl@gmail.com>
f6a177
Date: Wed, 25 Sep 2019 10:45:29 +0200
f6a177
Subject: [PATCH] window-list/workspace-indicator: Set reactiveness of actual
f6a177
 actor
f6a177
f6a177
Setting this.reactive on the workspace indicator instance doesn't change
f6a177
the reactiveness of the corresponding clutter actor, as this is the
f6a177
GNOME 3.28 backport where the actor is wrapped in ShellGenericContainer.
f6a177
f6a177
Fix this by instead setting this.actor.reactive.
f6a177
---
f6a177
 extensions/window-list/workspaceIndicator.js | 2 +-
f6a177
 1 file changed, 1 insertion(+), 1 deletion(-)
f6a177
f6a177
diff --git a/extensions/window-list/workspaceIndicator.js b/extensions/window-list/workspaceIndicator.js
f6a177
index c0dd65d..f19d1c5 100644
f6a177
--- a/extensions/window-list/workspaceIndicator.js
f6a177
+++ b/extensions/window-list/workspaceIndicator.js
f6a177
@@ -273,7 +273,7 @@ var WorkspaceIndicator = class WorkspaceIndicator extends PanelMenu.Button {
f6a177
 
f6a177
     _onWorkspaceOrientationChanged() {
f6a177
         let vertical = global.screen.layout_rows == -1;
f6a177
-        this.reactive = vertical;
f6a177
+        this.actor.reactive = vertical;
f6a177
 
f6a177
         this._statusBin.visible = vertical;
f6a177
         this._thumbnailsBox.visible = !vertical;
f6a177
-- 
f6a177
2.21.0
f6a177