- 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

@@ -160,6 +160,7 @@ if __name__ == '__main__':
fc = App(qapp=app)
# interrupt the Qt loop such that Python events have a chance to be responsive
timer = QTimer()
timer.timeout.connect(lambda: None)
timer.start(100)