diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-08-09 22:29:17 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-08-09 22:29:17 +0200 |
commit | 74b4343c43cb0f3fc85cf27d1159349d0b3f32e6 (patch) | |
tree | 5e32c9bfb0dc6f76e0404c581b3ca43a26ee3e35 /application/InstanceWindow.cpp | |
parent | 877d1020db4acfd5085a27cad013b7d03177ba0b (diff) | |
download | MultiMC-74b4343c43cb0f3fc85cf27d1159349d0b3f32e6.tar MultiMC-74b4343c43cb0f3fc85cf27d1159349d0b3f32e6.tar.gz MultiMC-74b4343c43cb0f3fc85cf27d1159349d0b3f32e6.tar.lz MultiMC-74b4343c43cb0f3fc85cf27d1159349d0b3f32e6.tar.xz MultiMC-74b4343c43cb0f3fc85cf27d1159349d0b3f32e6.zip |
GH-1642 fix instance launch from console
Diffstat (limited to 'application/InstanceWindow.cpp')
-rw-r--r-- | application/InstanceWindow.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/application/InstanceWindow.cpp b/application/InstanceWindow.cpp index dfc7b815..0b9d7019 100644 --- a/application/InstanceWindow.cpp +++ b/application/InstanceWindow.cpp @@ -157,6 +157,11 @@ void InstanceWindow::closeEvent(QCloseEvent *event) { emit isClosing(); event->accept(); + if(m_shouldQuit) + { + // this needs to be delayed so we don't do horrible things + QMetaObject::invokeMethod(MMC, "quit", Qt::QueuedConnection); + } } } |