diff --git a/SparkleShare/SparkleSetup.cs b/SparkleShare/SparkleSetup.cs index 069dbdef..6e9cca19 100755 --- a/SparkleShare/SparkleSetup.cs +++ b/SparkleShare/SparkleSetup.cs @@ -166,13 +166,6 @@ namespace SparkleShare { PathEntry = new SparkleEntry (); AddressEntry = new SparkleEntry (); - Controller.SelectListPluginEvent += delegate (int index) { - Application.Invoke (delegate { - TreeSelection selection = tree.Selection; - TreePath path = new TreePath (index.ToString ()); - selection.SelectPath (path); - }); - }; // Select the first plugin by default TreeSelection default_selection = tree.Selection; @@ -235,7 +228,7 @@ namespace SparkleShare { } if (!string.IsNullOrEmpty (address) && - address.Equals (Controller.PreviousServer)) { + address.Equals (Controller.PreviousAddress)) { tree.SetCursor (path, service_column, false); SparklePlugin plugin = (SparklePlugin) model.GetValue (iter, 2); diff --git a/SparkleShare/SparkleStatusIcon.cs b/SparkleShare/SparkleStatusIcon.cs index 98c6c6f7..7e4ed555 100755 --- a/SparkleShare/SparkleStatusIcon.cs +++ b/SparkleShare/SparkleStatusIcon.cs @@ -235,7 +235,7 @@ namespace SparkleShare { Menu.Add (new SeparatorMenuItem ()); // Opens the wizard to add a new remote folder - MenuItem sync_item = new MenuItem (_("Add Project…")); + MenuItem sync_item = new MenuItem (_("Add Hosted Project…")); if (Program.Controller.FirstRun) sync_item.Sensitive = false; @@ -259,7 +259,7 @@ namespace SparkleShare { Menu.Add (sync_item); Menu.Add (new SeparatorMenuItem ()); - MenuItem recent_events_item = new MenuItem (_("Show Recent Events")); + MenuItem recent_events_item = new MenuItem (_("Open Recent Events")); if (Program.Controller.Folders.Count < 1) recent_events_item.Sensitive = false;