Update Overview page when zombie or weight values are changed in Daily Notes tab.

This commit is contained in:
Guy Scharf 2021-09-20 08:03:34 -07:00
parent 5355713255
commit bdce731495
3 changed files with 9 additions and 0 deletions

View File

@ -2474,6 +2474,7 @@ void Daily::on_ZombieMeter_valueChanged(int action)
} }
journal->settings[Journal_ZombieMeter]=ui->ZombieMeter->value(); journal->settings[Journal_ZombieMeter]=ui->ZombieMeter->value();
journal->SetChanged(true); journal->SetChanged(true);
mainwin->updateOverview();
} }
void Daily::on_bookmarkTable_itemChanged(QTableWidgetItem *item) void Daily::on_bookmarkTable_itemChanged(QTableWidgetItem *item)
@ -2552,6 +2553,7 @@ void Daily::on_weightSpinBox_editingFinished()
if (g) g->setDay(nullptr); if (g) g->setDay(nullptr);
} }
journal->SetChanged(true); journal->SetChanged(true);
mainwin->updateOverview();
} }
void Daily::on_ouncesSpinBox_valueChanged(int arg1) void Daily::on_ouncesSpinBox_valueChanged(int arg1)

View File

@ -746,6 +746,11 @@ int MainWindow::importCPAP(ImportPath import, const QString &message)
return c; return c;
} }
void MainWindow::updateOverview()
{
if (overview)
overview->ReloadGraphs();
}
void MainWindow::finishCPAPImport() void MainWindow::finishCPAPImport()
{ {
if (daily) if (daily)

View File

@ -137,6 +137,8 @@ class MainWindow : public QMainWindow
//! \brief Returns the Overview Tab object //! \brief Returns the Overview Tab object
Overview *getOverview() { return overview; } Overview *getOverview() { return overview; }
void updateOverview();
/*! \fn void RestartApplication(bool force_login=false); /*! \fn void RestartApplication(bool force_login=false);
\brief Closes down OSCAR and restarts it \brief Closes down OSCAR and restarts it
\param bool force_login \param bool force_login