mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
statusMenu: temporarily drop Suspend menu item
It doesn't currently work, so hide it for now. It's not clear it's going to stay around long term, anyway. If it doesn't we can delete the code, then. Otherwise, we can add the code back when we have something that works. https://bugzilla.gnome.org/show_bug.cgi?id=636680
This commit is contained in:
parent
3173401cc2
commit
59191bc4b7
1 changed files with 6 additions and 3 deletions
|
|
@ -139,9 +139,12 @@ StatusMenuButton.prototype = {
|
|||
item = new PopupMenu.PopupSeparatorMenuItem();
|
||||
this.menu.addMenuItem(item);
|
||||
|
||||
item = new PopupMenu.PopupMenuItem(_("Suspend..."));
|
||||
item.connect('activate', Lang.bind(this, this._onShutDownActivate));
|
||||
this.menu.addMenuItem(item);
|
||||
// This is temporarily removed, see
|
||||
// http://bugzilla.gnome.org/show_bug.cgi?id=636680
|
||||
// for details.
|
||||
//item = new PopupMenu.PopupMenuItem(_("Suspend..."));
|
||||
//item.connect('activate', Lang.bind(this, this._onShutDownActivate));
|
||||
//this.menu.addMenuItem(item);
|
||||
|
||||
item = new PopupMenu.PopupMenuItem(_("Shut Down..."));
|
||||
item.connect('activate', Lang.bind(this, this._onShutDownActivate));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue