diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index a3cf04503..6e335216b 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -687,7 +687,7 @@ AppWell.prototype = { this._favoritesArea = new WellArea(width, true); this._favoritesArea.connect('activated', Lang.bind(this, function (a, display) { - this.emit('activated'); + Main.overlay.hide(); })); this.actor.append(this._favoritesArea.actor, Big.BoxPackFlags.NONE); @@ -697,7 +697,7 @@ AppWell.prototype = { padding_top: GenericDisplay.PREVIEW_BOX_PADDING }); this._runningArea = new WellArea(width, false); this._runningArea.connect('activated', Lang.bind(this, function (a, display) { - this.emit('activated'); + Main.overlay.hide(); })); this._runningBox.append(this._runningArea.actor, Big.BoxPackFlags.EXPAND); this.actor.append(this._runningBox, Big.BoxPackFlags.NONE); diff --git a/js/ui/genericDisplay.js b/js/ui/genericDisplay.js index 0d7a2ab07..22e26e259 100644 --- a/js/ui/genericDisplay.js +++ b/js/ui/genericDisplay.js @@ -380,7 +380,7 @@ GenericDisplay.prototype = { this._redisplay(true); }, - // Launches the item that is currently selected and emits 'activated' signal. + // Launches the item that is currently selected, closing the overlay activateSelected: function() { if (this._selectedIndex != -1) { let selected = this._findDisplayedByIndex(this._selectedIndex);