From 54636057517c7fcf95bcef7af2501c8b953f626c Mon Sep 17 00:00:00 2001 From: Daniel Chalmers Date: Thu, 18 Jul 2024 13:00:44 -0500 Subject: [PATCH] Fix size slider min/max --- DesktopClock/MainWindow.xaml | 4 ++-- DesktopClock/Properties/Settings.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DesktopClock/MainWindow.xaml b/DesktopClock/MainWindow.xaml index 1fba365..5f6f612 100644 --- a/DesktopClock/MainWindow.xaml +++ b/DesktopClock/MainWindow.xaml @@ -44,8 +44,8 @@ diff --git a/DesktopClock/Properties/Settings.cs b/DesktopClock/Properties/Settings.cs index 1def322..c675731 100644 --- a/DesktopClock/Properties/Settings.cs +++ b/DesktopClock/Properties/Settings.cs @@ -1,7 +1,6 @@ using System; using System.ComponentModel; using System.IO; -using System.Windows; using System.Windows.Media; using Newtonsoft.Json; using WpfWindowPlacement; @@ -24,6 +23,7 @@ public sealed class Settings : INotifyPropertyChanged, IDisposable }; public static readonly double MaxSizeLog = 6.5; + public static readonly double MinSizeLog = 2.7; static Settings()