Test p_profile before changing View Personal Data

This commit is contained in:
Phil Olynyk 2022-08-10 19:01:04 -04:00
parent 72f6788e37
commit 7ca4f42ccb

View File

@ -2553,9 +2553,15 @@ void MainWindow::on_actionDaily_Calendar_toggled(bool visible)
void MainWindow::on_actionShowPersonalData_toggled(bool visible)
{
// This uses the Prefs routines, which require p_profile to be set
if ( p_profile != nullptr ) {
AppSetting->setShowPersonalData(visible);
if (!setupRunning)
if ( ! setupRunning )
GenerateStatistics();
} else {
QMessageBox::information(this, "OSCAR", tr("You must select and open the profile you wish to modify"),
QMessageBox::Ok);
}
}
#include "SleepLib/journal.h"