From a464c5c2ca23d2da39ebacef4395e0e7bc84a5a9 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Tue, 2 Jul 2019 08:04:43 -0700 Subject: [PATCH] Refresh various displays to reflect any font changes made in preference settings. --- oscar/mainwindow.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index dd9cb661..d206eb12 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -1307,6 +1307,7 @@ void MainWindow::on_action_Preferences_triggered() prefdialog = &pd; if (pd.exec() == PreferencesDialog::Accepted) { + // Apply any updates from preference changes (notably fonts) if (daily) { daily->RedrawGraphs(); } @@ -1314,6 +1315,18 @@ void MainWindow::on_action_Preferences_triggered() if (overview) { overview->RebuildGraphs(true); } + + if (welcome) + welcome->refreshPage(); + + if (profileSelector) + profileSelector->updateProfileList(); + +// These attempts to update calendar after a change to application font do NOT work, and I can find no QT documentation suggesting +// that changing the font after Calendar is created is even possible. +// qDebug() << "application font family set to" << QApplication::font().family() << "and font" << QApplication::font(); +// ui->statStartDate->calendarWidget()->setFont(QApplication::font()); +// ui->statStartDate->calendarWidget()->repaint(); } prefdialog = nullptr; @@ -1994,7 +2007,8 @@ void MainWindow::purgeMachine(Machine * mach) daily->clearLastDay(); // otherwise Daily will crash daily->ReloadGraphs(); } - if (welcome) welcome->refreshPage(); + if (welcome) + welcome->refreshPage(); QApplication::processEvents(); }