Bug 591077 - Hide overlay when activating an application
It's easier to explicitly call Main.overlay.hide() instead of chaining activation signals, this got lost in a mix between the big dash rewrite and ongoing changes to the Application well.
This commit is contained in:
parent
544a80fc6e
commit
4e23f4cfc9
@ -687,7 +687,7 @@ AppWell.prototype = {
|
|||||||
|
|
||||||
this._favoritesArea = new WellArea(width, true);
|
this._favoritesArea = new WellArea(width, true);
|
||||||
this._favoritesArea.connect('activated', Lang.bind(this, function (a, display) {
|
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);
|
this.actor.append(this._favoritesArea.actor, Big.BoxPackFlags.NONE);
|
||||||
|
|
||||||
@ -697,7 +697,7 @@ AppWell.prototype = {
|
|||||||
padding_top: GenericDisplay.PREVIEW_BOX_PADDING });
|
padding_top: GenericDisplay.PREVIEW_BOX_PADDING });
|
||||||
this._runningArea = new WellArea(width, false);
|
this._runningArea = new WellArea(width, false);
|
||||||
this._runningArea.connect('activated', Lang.bind(this, function (a, display) {
|
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._runningBox.append(this._runningArea.actor, Big.BoxPackFlags.EXPAND);
|
||||||
this.actor.append(this._runningBox, Big.BoxPackFlags.NONE);
|
this.actor.append(this._runningBox, Big.BoxPackFlags.NONE);
|
||||||
|
@ -380,7 +380,7 @@ GenericDisplay.prototype = {
|
|||||||
this._redisplay(true);
|
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() {
|
activateSelected: function() {
|
||||||
if (this._selectedIndex != -1) {
|
if (this._selectedIndex != -1) {
|
||||||
let selected = this._findDisplayedByIndex(this._selectedIndex);
|
let selected = this._findDisplayedByIndex(this._selectedIndex);
|
||||||
|
Loading…
Reference in New Issue
Block a user