Add diagnostics when setting application font

To help resolve font setting problem on RPi4
This commit is contained in:
Guy Scharf 2021-01-14 13:40:29 -07:00 committed by Guy Scharf
parent ae0f498d0c
commit b00434f1d9

View File

@ -349,6 +349,8 @@ void validateFont (QString which, int size, bool bold, bool italic) {
if (testFont.length() > 0 && installedFontFamilies.indexOf(testFont) >= 0) {
desiredFont = testFont;
forceFont = false;
} else {
qDebug() << testFont << size << "not found, substituting" << desiredFont << size;
}
}
@ -376,6 +378,7 @@ void setApplicationFont () {
font.setItalic(((*p_pref)["Fonts_Application_Italic"]).toBool());
QApplication::setFont(font);
mainwin->menuBar()->setFont(font);
qDebug() << "Application font set to" << font << "system now says" << QFontDatabase::systemFont(QFontDatabase::GeneralFont).family();
}
bool removeDir(const QString &path)