mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Update date display on Overview page when font is changed in Preferences dialog
This commit is contained in:
parent
a464c5c2ca
commit
e0c70bf082
@ -1313,6 +1313,7 @@ void MainWindow::on_action_Preferences_triggered()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (overview) {
|
if (overview) {
|
||||||
|
overview->ResetFont();
|
||||||
overview->RebuildGraphs(true);
|
overview->RebuildGraphs(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,6 +144,13 @@ Overview::~Overview()
|
|||||||
delete ui;
|
delete ui;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Overview::ResetFont()
|
||||||
|
{
|
||||||
|
QFont font = QApplication::font();
|
||||||
|
font.setPointSizeF(font.pointSizeF()*1.3F);
|
||||||
|
dateLabel->setFont(font);
|
||||||
|
}
|
||||||
|
|
||||||
void Overview::RebuildGraphs(bool reset)
|
void Overview::RebuildGraphs(bool reset)
|
||||||
{
|
{
|
||||||
qint64 minx, maxx;
|
qint64 minx, maxx;
|
||||||
|
@ -46,6 +46,9 @@ class Overview : public QWidget
|
|||||||
//! \brief Recalculates Overview chart info
|
//! \brief Recalculates Overview chart info
|
||||||
void ReloadGraphs();
|
void ReloadGraphs();
|
||||||
|
|
||||||
|
//! \brief Resets font in date display
|
||||||
|
void ResetFont();
|
||||||
|
|
||||||
//! \brief Recalculates Overview chart info, but keeps the date set
|
//! \brief Recalculates Overview chart info, but keeps the date set
|
||||||
void ResetGraphs();
|
void ResetGraphs();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user