Call QCoreApplication.quit instead of raising SystemExit

Not sure it's needed, but it might trigger some cleanup code? Who knows.
This commit is contained in:
David Vierra 2015-05-15 20:58:54 -10:00
parent 3f245f0a48
commit 685031494a

View File

@ -787,7 +787,7 @@ class MCEditApp(QtGui.QApplication):
return
self.mainWindow.saveSettings()
raise SystemExit
self.quit()
# --- Help Menu Actions ---