diff options
Diffstat (limited to 'MultiMC.cpp')
-rw-r--r-- | MultiMC.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MultiMC.cpp b/MultiMC.cpp index 25c53185..3d62f76e 100644 --- a/MultiMC.cpp +++ b/MultiMC.cpp @@ -37,6 +37,9 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv) initTranslations(); + // Don't quit on hiding the last window + this->setQuitOnLastWindowClosed(false); + // Print app header std::cout << "MultiMC 5" << std::endl; std::cout << "(c) 2013 MultiMC Contributors" << std::endl << std::endl; @@ -158,6 +161,7 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv) m_status = MultiMC::Failed; return; } + m_status = MultiMC::Initialized; } |