##// END OF EJS Templates
Fix memory leak in Qt event loop integration (#14240) (#14251)...
Matthias Bussonnier -
r28517:c0a699d1 merge
parent child Browse files
Show More
@@ -84,3 +84,7 b' def inputhook(context):'
84 _exec(event_loop)
84 _exec(event_loop)
85 finally:
85 finally:
86 notifier.setEnabled(False)
86 notifier.setEnabled(False)
87
88 # This makes sure that the event loop is garbage collected.
89 # See issue 14240.
90 event_loop.setParent(None)
General Comments 0
You need to be logged in to leave comments. Login now