mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +00:00
Fix Crash during change of high resolution checkbox
This commit is contained in:
parent
c4c0bf5596
commit
f2fd17f68f
@ -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
|
||||
|
@ -1644,6 +1644,7 @@ void MainWindow::reloadProfile()
|
||||
|
||||
void MainWindow::RestartApplication(bool force_login, QString cmdline)
|
||||
{
|
||||
qDebug() << "Restarting OSCAR";
|
||||
CloseProfile();
|
||||
p_pref->Save();
|
||||
|
||||
|
@ -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:
|
||||
|
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user