Commit 5abff489 authored by Luci Stanescu's avatar Luci Stanescu

Made the main thread wait for the SIPApplication thread at exit

parent 01d248fd
...@@ -57,6 +57,7 @@ class Blink(QApplication): ...@@ -57,6 +57,7 @@ class Blink(QApplication):
self.exec_() self.exec_()
self.update_manager.shutdown() self.update_manager.shutdown()
self.application.stop() self.application.stop()
self.application.thread.join()
def customEvent(self, event): def customEvent(self, event):
handler = getattr(self, '_EH_%s' % event.name, Null) handler = getattr(self, '_EH_%s' % event.name, Null)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment