mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Make tool buttons in middle of screen respond to change in application font
This commit is contained in:
parent
e0c70bf082
commit
94f71ad4c2
@ -54,10 +54,22 @@ void Welcome::refreshPage()
|
|||||||
// sleep(3);
|
// sleep(3);
|
||||||
ui->cpapIcon->setPixmap(pixmap);
|
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->dailyButton->setEnabled(b);
|
||||||
|
ui->oximetryButton->setEnabled(b); // looks like this was omitted from the list (gts 7/4/2019)
|
||||||
ui->overviewButton->setEnabled(b);
|
ui->overviewButton->setEnabled(b);
|
||||||
ui->statisticsButton->setEnabled(b);
|
ui->statisticsButton->setEnabled(b);
|
||||||
mainwin->EnableTabs(b);
|
mainwin->EnableTabs(b);
|
||||||
|
|
||||||
/** MainWindow::ui->tabWidget->setTabEnabled(2, b);********* need to find some other way
|
/** 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(3, b);********* to enable these tabs ******
|
||||||
*** MainWindow::ui->tabWidget->setTabEnabled(4, b);************************************/
|
*** MainWindow::ui->tabWidget->setTabEnabled(4, b);************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user