Browse Source

Change default font to a monospaced one

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

+ 1 - 1
DesktopClock/Properties/Settings.cs

@@ -45,7 +45,7 @@ public sealed class Settings : INotifyPropertyChanged
     public double BackgroundOpacity { get; set; } = 0.90;
     public Color OuterColor { get; set; }
     public Color TextColor { get; set; }
-    public string FontFamily { get; set; } = "Arial";
+    public string FontFamily { get; set; } = "Consolas";
     public DateTimeOffset CountdownTo { get; set; } = DateTimeOffset.MinValue;
 
     [JsonIgnore]