From e86e88ea476e4cd26c3de289929296224cd6e34e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 25 Jun 2020 23:14:47 +0200 Subject: [PATCH] workspacesView: Don't make reactive Since commit a11f417cd0f98, scroll events are handled by the SwipeTracker. There's no other reason for the view to be reactive, so don't make it so. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1333 --- js/ui/workspacesView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/workspacesView.js b/js/ui/workspacesView.js index cc0d4f24b..0728d2151 100644 --- a/js/ui/workspacesView.js +++ b/js/ui/workspacesView.js @@ -21,7 +21,7 @@ var WorkspacesViewBase = GObject.registerClass({ GTypeFlags: GObject.TypeFlags.ABSTRACT, }, class WorkspacesViewBase extends St.Widget { _init(monitorIndex) { - super._init({ style_class: 'workspaces-view', reactive: true }); + super._init({ style_class: 'workspaces-view' }); this.connect('destroy', this._onDestroy.bind(this)); global.focus_manager.add_group(this);