diff --git a/SparkleShare/Linux/SparkleNote.cs b/SparkleShare/Linux/SparkleNote.cs index 45dd5065..dd57b993 100755 --- a/SparkleShare/Linux/SparkleNote.cs +++ b/SparkleShare/Linux/SparkleNote.cs @@ -20,12 +20,12 @@ using Gtk; namespace SparkleShare { - public class SparkleAbout : Window { + public class SparkleNote : Window { public SparkleNoteController Controller = new SparkleNoteController (); - public SparkleAbout () : base ("Sync") + public SparkleNote () : base ("Sync") { SetWmclass ("SparkleShare", "SparkleShare"); diff --git a/SparkleShare/Linux/SparkleStatusIcon.cs b/SparkleShare/Linux/SparkleStatusIcon.cs index 7f075dd9..82658724 100644 --- a/SparkleShare/Linux/SparkleStatusIcon.cs +++ b/SparkleShare/Linux/SparkleStatusIcon.cs @@ -139,7 +139,7 @@ namespace SparkleShare { item.Submenu = new Menu (); - this.state_menu_items [i] = new MenuItem (project.StatusMessage) { Sensitive = false }; + this.state_menu_items [i] = new SparkleMenuItem (project.StatusMessage) { Sensitive = false }; (item.Submenu as Menu).Add (this.state_menu_items [i]); (item.Submenu as Menu).Add (new SeparatorMenuItem ()); @@ -152,13 +152,13 @@ namespace SparkleShare { foreach (KeyValuePair pair in project.UnsyncedChangesInfo) (item.Submenu as Menu).Add (new MenuItem (pair.Key) { - Image = new Image () { - File = new string [] {icons_path, pair.Value.Replace ("-12", "")}.Combine () }, + // Image = new Image () { + // File = new string [] {icons_path, pair.Value.Replace ("-12", "")}.Combine () }, Sensitive = false }); if (!string.IsNullOrEmpty (project.MoreUnsyncedChanges)) { - (item.Submenu as Menu).Add (new MenuItem (MoreUnsyncedChanges) { + (item.Submenu as Menu).Add (new MenuItem (project.MoreUnsyncedChanges) { Sensitive = false }); } diff --git a/SparkleShare/Linux/SparkleUI.cs b/SparkleShare/Linux/SparkleUI.cs index 466364dd..e5b9a461 100644 --- a/SparkleShare/Linux/SparkleUI.cs +++ b/SparkleShare/Linux/SparkleUI.cs @@ -47,7 +47,7 @@ namespace SparkleShare { public void Run () { - (this.application as GLib.Application).Run (0, null); + (this.application as GLib.Application).Run (null, null); }