From 29212745f76ea1ef844c87d3cefa4c7b0b03dc32 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Tue, 21 Dec 2021 18:49:50 -0700 Subject: [PATCH] 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. --- Htmldocs/release_notes.html | 1 + oscar/newprofile.cpp | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html index 977b3aab..60884f52 100644 --- a/Htmldocs/release_notes.html +++ b/Htmldocs/release_notes.html @@ -17,6 +17,7 @@

Changes and fixes in OSCAR v1.3.1-beta-1 diff --git a/oscar/newprofile.cpp b/oscar/newprofile.cpp index 2e9a205c..c87bc2ee 100644 --- a/oscar/newprofile.cpp +++ b/oscar/newprofile.cpp @@ -266,6 +266,9 @@ void NewProfile::on_nextButton_clicked() profile->Save(); + if (mainwin) + mainwin->GenerateStatistics(); + this->accept(); } }