diff --git a/js/ui/workspace.js b/js/ui/workspace.js index 7370a137a..a5cd522d3 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -247,7 +247,7 @@ var WindowPreview = GObject.registerClass({ this.y = this.boundingBox.y; let clickAction = new Clutter.ClickAction(); - clickAction.connect('clicked', this._onClicked.bind(this)); + clickAction.connect('clicked', () => this._activate()); clickAction.connect('long-press', this._onLongPress.bind(this)); this.add_action(clickAction); this.connect('destroy', this._onDestroy.bind(this)); @@ -686,10 +686,6 @@ var WindowPreview = GObject.registerClass({ return super.vfunc_key_press_event(keyEvent); } - _onClicked() { - this._activate(); - } - _onLongPress(action, actor, state) { // Take advantage of the Clutter policy to consider // a long-press canceled when the pointer movement