summaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/main.cpp b/main.cpp
index 9def9777..8f397ab8 100644
--- a/main.cpp
+++ b/main.cpp
@@ -41,12 +41,7 @@ int main(int argc, char *argv[])
app.setActiveWindow(&w);
app.setWindowIcon(QIcon(":artwork/icon.png"));
w.setApp(&app);
- if (w.checkConfig()) {
- w.setText(text);
- w.show();
- return app.exec();
- } else {
- // canceled out of wizard
- return 0;
- }
+ w.setText(text);
+ w.show();
+ return app.exec();
}