[gnome-shell] statusMenu: fix menu items to match latest mockups
- From: Dan Winship <danw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] statusMenu: fix menu items to match latest mockups
- Date: Mon, 25 Oct 2010 21:45:36 +0000 (UTC)
commit fa752110f3fb55131fe8819352f11b1db12bbf2f
Author: Dan Winship <danw gnome org>
Date: Tue Oct 19 12:04:58 2010 -0400
statusMenu: fix menu items to match latest mockups
Rename a few, and add Suspend and Restart, although currently they do
the same thing as Shut Down (ie, they bring up a dialog that lets you
do any of those three). This will be fixed later when we have the
in-shell modal dialogs for these features.
https://bugzilla.gnome.org/show_bug.cgi?id=631193
js/ui/statusMenu.js | 19 +++++++++++++++----
1 files changed, 15 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/statusMenu.js b/js/ui/statusMenu.js
index 1979668..89eb4eb 100644
--- a/js/ui/statusMenu.js
+++ b/js/ui/statusMenu.js
@@ -109,11 +109,11 @@ StatusMenuButton.prototype = {
item = new PopupMenu.PopupSeparatorMenuItem();
this.menu.addMenuItem(item);
- item = new PopupMenu.PopupMenuItem(_("Account Information..."));
- item.connect('activate', Lang.bind(this, this._onAccountInformationActivate));
+ item = new PopupMenu.PopupMenuItem(_("My Account..."));
+ item.connect('activate', Lang.bind(this, this._onMyAccountActivate));
this.menu.addMenuItem(item);
- item = new PopupMenu.PopupMenuItem(_("System Settings..."));
+ item = new PopupMenu.PopupMenuItem(_("System Preferences..."));
item.connect('activate', Lang.bind(this, this._onPreferencesActivate));
this.menu.addMenuItem(item);
@@ -133,6 +133,17 @@ StatusMenuButton.prototype = {
item.connect('activate', Lang.bind(this, this._onQuitSessionActivate));
this.menu.addMenuItem(item);
+ 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);
+
+ item = new PopupMenu.PopupMenuItem(_("Restart..."));
+ 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));
this.menu.addMenuItem(item);
@@ -142,7 +153,7 @@ StatusMenuButton.prototype = {
this._presence.setStatus(status);
},
- _onAccountInformationActivate: function() {
+ _onMyAccountActivate: function() {
Main.overview.hide();
this._spawn(['gnome-about-me']);
},
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]