Change the default editor font size on OSX to 12pt

For #818
This commit is contained in:
Justin Clift
2016-10-13 12:46:18 +01:00
parent 627ed4c56b
commit 980429debd

View File

@@ -195,7 +195,12 @@ QVariant Settings::getSettingsDefaultValue(const QString& group, const QString&
// editor/fontsize or log/fontsize?
if((group == "editor" || group == "log") && name == "fontsize")
#ifdef Q_OS_MAC
// Use 12 pt size as the default on OSX
return 12;
#else
return 9;
#endif
if(group == "editor")
{