diff options
author | Sky <git@bunnies.cc> | 2013-10-26 11:13:14 +0100 |
---|---|---|
committer | Sky <git@bunnies.cc> | 2013-10-26 11:13:14 +0100 |
commit | 1f28a3b8af228ec40412571859f15ea216ccb52a (patch) | |
tree | 975225cfc5981d9f8e5b79ba224db02782aa4faf /MultiMC.cpp | |
parent | cf07b90bdaf7dda2cbdd8ae9a7212c04badd0b09 (diff) | |
parent | c467ebf1327d6266fc51443edfac6f0b536b6602 (diff) | |
download | MultiMC-1f28a3b8af228ec40412571859f15ea216ccb52a.tar MultiMC-1f28a3b8af228ec40412571859f15ea216ccb52a.tar.gz MultiMC-1f28a3b8af228ec40412571859f15ea216ccb52a.tar.lz MultiMC-1f28a3b8af228ec40412571859f15ea216ccb52a.tar.xz MultiMC-1f28a3b8af228ec40412571859f15ea216ccb52a.zip |
Merge branch 'develop'
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; } |