statusicon: wrong sign

This commit is contained in:
Hylke Bons 2011-06-12 02:59:18 +01:00
parent 773f940e69
commit a0c4dbf53e
2 changed files with 2 additions and 2 deletions

View file

@ -239,7 +239,7 @@ namespace SparkleShare {
Title = "Show Recent Events"
};
if (SparkleShare.Controller.Folders.Count > 0) {
if (SparkleShare.Controller.Folders.Count < 0) {
RecentEventsMenuItem.Activated +=delegate {
InvokeOnMainThread (delegate {
NSApplication.SharedApplication.ActivateIgnoringOtherApps (true);

View file

@ -212,7 +212,7 @@ namespace SparkleShare {
MenuItem recent_events_item = new MenuItem (_("Show Recent Events"));
if (SparkleShare.Controller.Folders.Count > 0)
if (SparkleShare.Controller.Folders.Count < 1)
recent_events_item.Sensitive = false;
recent_events_item.Activated += delegate {