Fix problem with null font name. Forced default font for Mac will be Helvetica.

This commit is contained in:
Seeker4 2019-07-10 21:35:14 -07:00
parent 01f98d1583
commit 5bf71e2a55

View File

@ -324,7 +324,7 @@ void validateFont (QString which, int size, bool bold, bool italic) {
// We already have a font, so it becomes desired font (if valid)
QString testFont = (*p_pref)[prefPrefix + "Name"].toString();
// Is this a good font?
if (installedFontFamilies.indexOf(testFont) >= 0) {
if (testFont.length() > 0 && installedFontFamilies.indexOf(testFont) >= 0) {
desiredFont = testFont;
forceFont = false;
}
@ -333,7 +333,7 @@ void validateFont (QString which, int size, bool bold, bool italic) {
#ifdef Q_OS_MAC
// Don't allow private font to be set for anything other than Application font (Mac restricts use to UI)
if (which != "Application" && fontdatabase.isPrivateFamily(desiredFont)) {
desiredFont = "Arial"; // We assume "Arial" is universally available on Mac
desiredFont = "Helvetica"; // We assume "Helvetica" is universally available on Mac
forceFont = true;
}
#endif