summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gui/main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/main.cpp b/gui/main.cpp
index 43a8b0c6..a4e81c01 100644
--- a/gui/main.cpp
+++ b/gui/main.cpp
@@ -65,10 +65,12 @@ int main(int argc, char** argv)
QSettings s(OPENTRACK_ORG);
if (!s.contains("wizard-run-once"))
{
- s.setValue("wizard-run-once", true);
auto w = std::make_shared<Wizard>();
w->show();
app.exec();
+ if (w->result() != QDialog::Accepted)
+ goto end;
+ s.setValue("wizard-run-once", true);
}
}
@@ -92,6 +94,7 @@ int main(int argc, char** argv)
Dialog().exec();
}
+end:
// on MSVC crashes in atexit
#ifdef _MSC_VER
TerminateProcess(GetCurrentProcess(), 0);