浏览代码

Change default font to a monospaced one

Daniel Chalmers 3 年之前
父节点
当前提交
060609a984
共有 1 个文件被更改,包括 1 次插入1 次删除
  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]