From 94f71ad4c28208f7defe79dd77f0c50fb89f9954 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Thu, 4 Jul 2019 18:11:12 -0700 Subject: [PATCH] Make tool buttons in middle of screen respond to change in application font --- oscar/welcome.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index ab391915..03d102c1 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -54,10 +54,22 @@ void Welcome::refreshPage() // sleep(3); ui->cpapIcon->setPixmap(pixmap); } + + // Copy application font to tool buttons + ui->importButton->setFont(QApplication::font()); + ui->dailyButton->setFont(QApplication::font()); + ui->overviewButton->setFont(QApplication::font()); + ui->statisticsButton->setFont(QApplication::font()); + ui->oximetryButton->setFont(QApplication::font()); + + + // Enable buttons that might be disabled ui->dailyButton->setEnabled(b); + ui->oximetryButton->setEnabled(b); // looks like this was omitted from the list (gts 7/4/2019) ui->overviewButton->setEnabled(b); ui->statisticsButton->setEnabled(b); mainwin->EnableTabs(b); + /** MainWindow::ui->tabWidget->setTabEnabled(2, b);********* need to find some other way *** MainWindow::ui->tabWidget->setTabEnabled(3, b);********* to enable these tabs ****** *** MainWindow::ui->tabWidget->setTabEnabled(4, b);************************************/