- changes the exit method from exit(0) to quit()

This commit is contained in:
Marius Stanciu
2021-08-05 21:04:00 +03:00
committed by Marius
parent 0df26163a4
commit 584134a27a
4 changed files with 6 additions and 2 deletions

View File

@@ -4018,7 +4018,8 @@ class App(QtCore.QObject):
# quit app by signalling for self.kill_app() method
# self.close_app_signal.emit()
sys.exit(0)
# sys.exit(0)
QtWidgets.QApplication.quit()
@staticmethod
def kill_app():