Update Statistics page after editing profile

This makes profile changes immediately visible rather than
  requiring closing and re-opening the profile in OSCAR to see changes.
This commit is contained in:
Guy Scharf 2021-12-21 18:49:50 -07:00
parent b22e0cd026
commit 29212745f7
2 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,7 @@
<ul>
<li>[fix] Fix missing oximetry and motion waveforms on Overview pages.</li>
<li>[fix] Fix rare problem of minimum pressure shown as zero on Overview and Statistics pages.</li>
<li>[fix] Update Statistics page after editing profile.</li>
</ul>
<p>
<b>Changes and fixes in OSCAR v1.3.1-beta-1</b>

View File

@ -266,6 +266,9 @@ void NewProfile::on_nextButton_clicked()
profile->Save();
if (mainwin)
mainwin->GenerateStatistics();
this->accept();
}
}