1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-07-31 01:59:03 +02:00

Fix timer checkbox being updated instead of non-intrusive popups checkbox in Settings

This commit is contained in:
chylex 2017-03-22 13:15:47 +01:00
parent d9b9afbf2d
commit 7548e2e202

View File

@ -55,7 +55,7 @@ public TabSettingsNotifications(FormNotificationMain notification, bool ignoreAu
checkNotificationTimer.Checked = Config.DisplayNotificationTimer;
checkTimerCountDown.Enabled = checkNotificationTimer.Checked;
checkTimerCountDown.Checked = Config.NotificationTimerCountDown;
checkNotificationTimer.Checked = Config.NotificationNonIntrusiveMode;
checkNonIntrusive.Checked = Config.NotificationNonIntrusiveMode;
trackBarEdgeDistance.SetValueSafe(Config.NotificationEdgeDistance);
labelEdgeDistanceValue.Text = trackBarEdgeDistance.Value.ToString(CultureInfo.InvariantCulture)+" px";