From 7ca4f42ccb755b80b874122bd75382fb9006583c Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Wed, 10 Aug 2022 19:01:04 -0400 Subject: [PATCH] Test p_profile before changing View Personal Data --- oscar/mainwindow.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 095bb09b..bcc8cfb2 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -2553,9 +2553,15 @@ void MainWindow::on_actionDaily_Calendar_toggled(bool visible) void MainWindow::on_actionShowPersonalData_toggled(bool visible) { - AppSetting->setShowPersonalData(visible); - if (!setupRunning) - GenerateStatistics(); + // This uses the Prefs routines, which require p_profile to be set + if ( p_profile != nullptr ) { + AppSetting->setShowPersonalData(visible); + 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"