From caf73bd48e1b5b73c42a166be23e4c7cbda68cbb Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 13 Jan 2013 11:29:28 +0000 Subject: [PATCH] windows statusicon: change notification checkbox enable logic. fixes #1146 --- SparkleShare/Windows/SparkleStatusIcon.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/Windows/SparkleStatusIcon.cs b/SparkleShare/Windows/SparkleStatusIcon.cs index c4098578..cd811c60 100644 --- a/SparkleShare/Windows/SparkleStatusIcon.cs +++ b/SparkleShare/Windows/SparkleStatusIcon.cs @@ -134,7 +134,7 @@ namespace SparkleShare { CheckBox notify_check_box = new CheckBox () { Margin = new Thickness (6, 0, 0, 0), - IsChecked = (Controller.Folders.Length > 0 && Program.Controller.NotificationsEnabled) + IsChecked = Program.Controller.NotificationsEnabled }; SparkleMenuItem notify_item = new SparkleMenuItem () { Header = "Notifications" };