mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +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->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)
|
||||||
|
@ -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)
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user