Merge pull request #2294 from Trial97/import_crash

Fixed application close on open file dialog
This commit is contained in:
Alexandru Ionut Tripon
2024-04-19 00:12:47 +03:00
committed by GitHub

View File

@ -225,6 +225,7 @@ Application::Application(int& argc, char** argv) : QApplication(argc, argv)
// Don't quit on hiding the last window
this->setQuitOnLastWindowClosed(false);
this->setQuitLockEnabled(false);
// Commandline parsing
QCommandLineParser parser;