diff --git a/SparkleShare/Mac/SparkleEventLog.cs b/SparkleShare/Mac/SparkleEventLog.cs index 2fd3329c..edd30bfa 100755 --- a/SparkleShare/Mac/SparkleEventLog.cs +++ b/SparkleShare/Mac/SparkleEventLog.cs @@ -33,6 +33,7 @@ namespace SparkleShare { private WebView web_view; private NSBox separator; + private NSBox background; private NSPopUpButton popup_button; private NSProgressIndicator progress_indicator; private NSTextField size_label; @@ -132,6 +133,12 @@ namespace SparkleShare { }; + this.background = new NSBox (new RectangleF (0, -1, 481, 581)) { + FillColor = NSColor.White, + BoxType = NSBoxType.NSBoxCustom + }; + + this.progress_indicator = new NSProgressIndicator () { Style = NSProgressIndicatorStyle.Spinning, Frame = new RectangleF (this.web_view.Frame.Width / 2 - 10, @@ -145,6 +152,7 @@ namespace SparkleShare { ContentView.AddSubview (this.size_label_value); ContentView.AddSubview (this.history_label); ContentView.AddSubview (this.history_label_value); + ContentView.AddSubview (this.background); ContentView.AddSubview (this.separator); ContentView.AddSubview (this.progress_indicator); ContentView.AddSubview (this.hidden_close_button); diff --git a/SparkleShare/Mac/SparkleShare.csproj b/SparkleShare/Mac/SparkleShare.csproj index ce93b898..822e4689 100755 --- a/SparkleShare/Mac/SparkleShare.csproj +++ b/SparkleShare/Mac/SparkleShare.csproj @@ -11,7 +11,7 @@ SparkleShare SparkleShare v4.0 - 0.8.3 + 0.8.4 true diff --git a/SparkleShare/Mac/SparkleShare.sln b/SparkleShare/Mac/SparkleShare.sln index 3521ad0b..36ca9661 100644 --- a/SparkleShare/Mac/SparkleShare.sln +++ b/SparkleShare/Mac/SparkleShare.sln @@ -16,6 +16,6 @@ Global EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution StartupItem = SparkleShare.csproj - version = 0.8.3 + version = 0.8.4 EndGlobalSection EndGlobal diff --git a/SparkleShare/Mac/SparkleStatusIcon.cs b/SparkleShare/Mac/SparkleStatusIcon.cs index 7eb2842a..eda568af 100755 --- a/SparkleShare/Mac/SparkleStatusIcon.cs +++ b/SparkleShare/Mac/SparkleStatusIcon.cs @@ -253,20 +253,20 @@ namespace SparkleShare { Menu.AddItem (SyncMenuItem); - Menu.AddItem (NSMenuItem.SeparatorItem); - + RecentEventsMenuItem = new NSMenuItem () { Title = "View Recent Changes…", Enabled = (Controller.Folders.Length > 0) }; - + if (Controller.Folders.Length > 0) { RecentEventsMenuItem.Activated += delegate { Controller.OpenRecentEventsClicked (); }; } - + Menu.AddItem (RecentEventsMenuItem); + Menu.AddItem (NSMenuItem.SeparatorItem); NotificationsMenuItem = new NSMenuItem () { Enabled = true