From 142220c16c566534f955a0c53dc86cdc34e56ae5 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Fri, 15 Jan 2021 11:30:34 -0700 Subject: [PATCH] More diagnostics for font setting failure on startup on RPi Dump entire font table if desired font is not found --- oscar/SleepLib/common.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index f306c2e8..9bf94c2c 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -351,6 +351,8 @@ void validateFont (QString which, int size, bool bold, bool italic) { forceFont = false; } else { qDebug() << testFont << size << "not found, substituting" << desiredFont << size; + for (int i = 0; i< installedFontFamilies.size(); i++) + qDebug() << installedFontFamilies.at(i); } } @@ -379,8 +381,8 @@ void setApplicationFont () { QApplication::setFont(font); mainwin->menuBar()->setFont(font); qDebug() << "Application font set to" << font; - qDebug() << "system font" << QFontDatabase::systemFont(QFontDatabase::GeneralFont).family(); - qDebug() << "Application font" << QApplication::font(); + qDebug() << "Application font reads back as" << QApplication::font(); + qDebug() << "system font is" << QFontDatabase::systemFont(QFontDatabase::GeneralFont).family(); } bool removeDir(const QString &path)