From 804563d5b23db71f3d45bdd5a381bd280c702489 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Wed, 1 Jul 2015 15:51:15 +0200 Subject: [PATCH] windowManager: refactor WorkspaceSwitchAction callback into separate function This will be used by the touchpad-specific "action" too, so put it in a shared place. https://bugzilla.gnome.org/show_bug.cgi?id=752250 --- js/ui/windowManager.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js index 5c66190f8..e28ed2d9b 100644 --- a/js/ui/windowManager.js +++ b/js/ui/windowManager.js @@ -866,15 +866,18 @@ const WindowManager = new Lang.Class({ false, -1, 1); let gesture = new WorkspaceSwitchAction(); - gesture.connect('activated', Lang.bind(this, function(action, direction) { - let newWs = global.screen.get_active_workspace().get_neighbor(direction); - this.actionMoveWorkspace(newWs); - })); + gesture.connect('activated', Lang.bind(this, this._actionSwitchWorkspace)); global.stage.add_action(gesture); gesture = new AppSwitchAction(); gesture.connect('activated', Lang.bind(this, this._switchApp)); global.stage.add_action(gesture); + + }, + + _actionSwitchWorkspace: function(action, direction) { + let newWs = global.screen.get_active_workspace().get_neighbor(direction); + this.actionMoveWorkspace(newWs); }, _lookupIndex: function (windows, metaWindow) {