system: Don't leave overview when activating most items

The current behavior wasn't designed, but was introduced in commit
84efaac52b to work around technical limitations when we were still
using external tools like gnome-screensaver or gnome-session-quit
to handle the actions. Those limitations are long gone, so it makes
sense to make the actions consistent with the corresponding keyboard
shortcuts: Leave the overview when launching an application, and leave
it alone otherwise.

https://bugzilla.gnome.org/show_bug.cgi?id=691900
This commit is contained in:
Rares Visalom 2017-08-21 14:49:19 +03:00 committed by Florian Müllner
parent e8a2c06e4e
commit 7d95275076

View File

@ -445,13 +445,11 @@ var Indicator = new Lang.Class({
_onLockScreenClicked: function() { _onLockScreenClicked: function() {
this.menu.itemActivated(BoxPointer.PopupAnimation.NONE); this.menu.itemActivated(BoxPointer.PopupAnimation.NONE);
Main.overview.hide();
Main.screenShield.lock(true); Main.screenShield.lock(true);
}, },
_onLoginScreenActivate: function() { _onLoginScreenActivate: function() {
this.menu.itemActivated(BoxPointer.PopupAnimation.NONE); this.menu.itemActivated(BoxPointer.PopupAnimation.NONE);
Main.overview.hide();
if (Main.screenShield) if (Main.screenShield)
Main.screenShield.lock(false); Main.screenShield.lock(false);
@ -462,13 +460,11 @@ var Indicator = new Lang.Class({
}, },
_onQuitSessionActivate: function() { _onQuitSessionActivate: function() {
Main.overview.hide();
this._session.LogoutRemote(0); this._session.LogoutRemote(0);
}, },
_onPowerOffClicked: function() { _onPowerOffClicked: function() {
this.menu.itemActivated(); this.menu.itemActivated();
Main.overview.hide();
this._session.ShutdownRemote(0); this._session.ShutdownRemote(0);
}, },