mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Update Overview page when zombie or weight values are changed in Daily Notes tab.
This commit is contained in:
parent
5355713255
commit
bdce731495
@ -2474,6 +2474,7 @@ void Daily::on_ZombieMeter_valueChanged(int action)
|
||||
}
|
||||
journal->settings[Journal_ZombieMeter]=ui->ZombieMeter->value();
|
||||
journal->SetChanged(true);
|
||||
mainwin->updateOverview();
|
||||
}
|
||||
|
||||
void Daily::on_bookmarkTable_itemChanged(QTableWidgetItem *item)
|
||||
@ -2552,6 +2553,7 @@ void Daily::on_weightSpinBox_editingFinished()
|
||||
if (g) g->setDay(nullptr);
|
||||
}
|
||||
journal->SetChanged(true);
|
||||
mainwin->updateOverview();
|
||||
}
|
||||
|
||||
void Daily::on_ouncesSpinBox_valueChanged(int arg1)
|
||||
|
@ -746,6 +746,11 @@ int MainWindow::importCPAP(ImportPath import, const QString &message)
|
||||
return c;
|
||||
}
|
||||
|
||||
void MainWindow::updateOverview()
|
||||
{
|
||||
if (overview)
|
||||
overview->ReloadGraphs();
|
||||
}
|
||||
void MainWindow::finishCPAPImport()
|
||||
{
|
||||
if (daily)
|
||||
|
@ -137,6 +137,8 @@ class MainWindow : public QMainWindow
|
||||
//! \brief Returns the Overview Tab object
|
||||
Overview *getOverview() { return overview; }
|
||||
|
||||
void updateOverview();
|
||||
|
||||
/*! \fn void RestartApplication(bool force_login=false);
|
||||
\brief Closes down OSCAR and restarts it
|
||||
\param bool force_login
|
||||
|
Loading…
Reference in New Issue
Block a user