statusicon: Rename and move Add item

This commit is contained in:
Hylke Bons 2016-04-14 08:09:15 -07:00
parent 36afb88de5
commit d114afe764

View file

@ -209,7 +209,7 @@ namespace SparkleShare {
this.recent_events_item = new MenuItem ("Recent Changes…");
this.recent_events_item.Sensitive = Controller.RecentEventsItemEnabled;
this.quit_item = new MenuItem ("Quit") { Sensitive = Controller.QuitItemEnabled };
MenuItem add_item = new MenuItem ("Add Hosted Project…");
MenuItem add_item = new MenuItem ("Sync Remote Project…");
MenuItem link_code_item = new MenuItem ("Client ID");
@ -236,7 +236,6 @@ namespace SparkleShare {
folder_item.Submenu = new Menu ();
(folder_item.Submenu as Menu).Add (this.recent_events_item);
(folder_item.Submenu as Menu).Add (add_item);
if (InstallationInfo.OperatingSystem == OS.Ubuntu) {
MenuItem notify_item;
@ -266,6 +265,7 @@ namespace SparkleShare {
(folder_item.Submenu as Menu).Add (new SeparatorMenuItem ());
(folder_item.Submenu as Menu).Add (about_item);
this.menu.Add (add_item);
this.menu.Add (new SeparatorMenuItem ());
this.menu.Add (this.quit_item);
this.menu.ShowAll ();