Browse Source

Reorder settings in order of relevance to user

Daniel Chalmers 3 years ago
parent
commit
4c51b15c83
1 changed files with 9 additions and 9 deletions
  1. 9 9
      DesktopClock/Properties/Settings.cs

+ 9 - 9
DesktopClock/Properties/Settings.cs

@@ -35,18 +35,18 @@ public sealed class Settings : INotifyPropertyChanged
 
     #region "Properties"
 
-    public WindowPlacement Placement { get; set; }
-    public bool Topmost { get; set; } = true;
-    public bool ShowInTaskbar { get; set; } = true;
-    public double Height { get; set; } = 48;
-    public string TimeZone { get; set; } = string.Empty;
+    public DateTimeOffset CountdownTo { get; set; } = DateTimeOffset.MinValue;
     public string Format { get; set; } = "dddd, MMM dd, HH:mm:ss";
+    public string TimeZone { get; set; } = string.Empty;
+    public string FontFamily { get; set; } = "Consolas";
+    public Color TextColor { get; set; }
+    public Color OuterColor { get; set; }
     public bool BackgroundEnabled { get; set; } = true;
     public double BackgroundOpacity { get; set; } = 0.90;
-    public Color OuterColor { get; set; }
-    public Color TextColor { get; set; }
-    public string FontFamily { get; set; } = "Consolas";
-    public DateTimeOffset CountdownTo { get; set; } = DateTimeOffset.MinValue;
+    public bool Topmost { get; set; } = true;
+    public bool ShowInTaskbar { get; set; } = true;
+    public double Height { get; set; } = 48;
+    public WindowPlacement Placement { get; set; }
 
     [JsonIgnore]
     public Theme Theme