Browse Source

Enable background by default

Easier to see and click on first use
Daniel Chalmers 3 years ago
parent
commit
f96811b8e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      DesktopClock/Properties/Settings.cs

+ 1 - 1
DesktopClock/Properties/Settings.cs

@@ -39,7 +39,7 @@ namespace DesktopClock.Properties
         public int Height { get; set; } = 48;
         public string TimeZone { get; set; } = string.Empty;
         public string Format { get; set; } = "dddd, MMM dd, HH:mm:ss";
-        public bool BackgroundEnabled { get; set; } = false;
+        public bool BackgroundEnabled { get; set; } = true;
         public double BackgroundOpacity { get; set; } = 0.90;
         public Color OuterColor { get; set; }
         public Color TextColor { get; set; }