Change default macOS font to Helvetica

This commit is contained in:
Veronica Berglyd Olsen
2023-07-20 01:22:30 +02:00
parent 664d314d3a
commit 57d6b6ac1d
+2 -2
View File
@@ -354,8 +354,8 @@ class Config:
logger.warning("Unknown font '%s'", family)
if self.osWindows and "Arial" in fontFam:
self.textFont = "Arial"
elif self.osDarwin and "Courier" in fontFam:
self.textFont = "Courier"
elif self.osDarwin and "Helvetica" in fontFam:
self.textFont = "Helvetica"
else:
self.textFont = fontDB.systemFont(QFontDatabase.GeneralFont).family()
else: