diff --git a/Common/Controllers/Preferences.swift b/Common/Controllers/Preferences.swift index 47f2238..810244d 100644 --- a/Common/Controllers/Preferences.swift +++ b/Common/Controllers/Preferences.swift @@ -146,7 +146,11 @@ public enum KeyboardButtonStyle: Int { if regularFont == nil || boldFont == nil { NSLog("font %@ size %f could not be initialised", fontName, fontSize) - fontName = "Courier" + if #available(iOS 13.0, macOS 10.15, *) { + fontName = "SF Mono" + } else { + fontName = "Courier" + } return }