Browse Source

Change defaults

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

+ 2 - 2
DesktopClock/Properties/Settings.cs

@@ -30,9 +30,9 @@ namespace DesktopClock.Properties
         public WindowPlacement Placement { get; set; }
         public bool Topmost { get; set; } = true;
         public bool ShowInTaskbar { get; set; } = true;
-        public int Height { get; set; } = 40;
+        public int Height { get; set; } = 48;
         public string TimeZone { get; set; } = string.Empty;
-        public string Format { get; set; } = "F";
+        public string Format { get; set; } = "dddd, MMM dd, HH:mm:ss";
         public string Title { get; set; } = string.Empty;
         public Color TitleColor { get; set; } = Colors.Blue;
         public Color BackgroundColor { get; set; } = Colors.White;