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

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