Fix Crash during change of high resolution checkbox

This commit is contained in:
LoudSnorer 2024-07-10 13:00:21 -04:00
parent c4c0bf5596
commit f2fd17f68f
4 changed files with 18 additions and 12 deletions

View File

@ -401,7 +401,7 @@ int main(int argc, char *argv[]) {
for (int i = 1; i < args.size(); i++) {
if ((args[i] == "--language") || (args[i] == "--l") ) {
settings.setValue(LangSetting,"");
} else if ( (args[i] == "-l") || (args[i] == "-nop")){
} else if ( (args[i] == "-l") || (args[i] == "-nop") || (args[i] == "") ){
// do nothing. internal calls that current don't have any functions in main.
} else if (args[i] == "-p") {
QThread::msleep(1000);
@ -409,7 +409,8 @@ int main(int argc, char *argv[]) {
if ((i+1) < args.size())
load_profile = args[++i];
else {
optionExit(1,"Missing argument to --profile");
// Just view all profiles.
load_profile = " ";
}
} else if (args[i] == "--datadir") { // mltam's idea
QString datadir, datadirwas ;
@ -435,7 +436,7 @@ int main(int argc, char *argv[]) {
} else if (QString(args[i]).contains("help",Qt::CaseInsensitive)) {
optionExit(0,QString(""));
} else {
optionExit(3,QString("Invalid Argument. %1").arg(args[i]));
optionExit(3,QString("Invalid Argument: '%1'").arg(args[i]));
}
} // end of for args loop

View File

@ -1644,6 +1644,7 @@ void MainWindow::reloadProfile()
void MainWindow::RestartApplication(bool force_login, QString cmdline)
{
qDebug() << "Restarting OSCAR";
CloseProfile();
p_pref->Save();

View File

@ -138,14 +138,6 @@ class MainWindow : public QMainWindow
void updateOverview();
/*! \fn void RestartApplication(bool force_login=false);
\brief Closes down OSCAR and restarts it
\param bool force_login
If force_login is set, it will return to the login menu even if it's set to skip
*/
void RestartApplication(bool force_login = false, QString cmdline = QString());
void JumpDaily();
void JumpOverview();
void JumpStatistics();
@ -179,6 +171,14 @@ class MainWindow : public QMainWindow
//! \brief Recalculate all event summaries and flags
void doReprocessEvents();
void doRecompressEvents();
/*! \fn void RestartApplication(bool force_login=false);
\brief Closes down OSCAR and restarts it
\param bool force_login
If force_login is set, it will return to the login menu even if it's set to skip
allow timer to restart application.
*/
void RestartApplication(bool force_login = false, QString cmdline = QString());
protected:

View File

@ -868,7 +868,11 @@ bool PreferencesDialog::Save()
bool clicicalModeChanged = profile->cpap->clinicalMode() != ui->clinicalMode->isChecked() ;
p_profile->cpap->setClinicalMode(ui->clinicalMode->isChecked());
needs_restart |= HighResolution::checkBox(true,ui->highResolution);
if (HighResolution::checkBox(true,ui->highResolution) ) {
//needs_restart = true;
QTimer::singleShot(0, mainwin, SLOT(RestartApplication(true, "-p")));
return true; // save profile
}
if (ui->alternatingColorsCombo->currentIndex() != AppSetting->alternatingColorsCombo()) {
AppSetting->setAlternatingColorsCombo(ui->alternatingColorsCombo->currentIndex());