We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8326a62 + a018fd6 commit 468e3faCopy full SHA for 468e3fa
Orange/widgets/visualize/utils/__init__.py
@@ -86,7 +86,7 @@ class Information(WidgetMessagesMixin.Information):
86
87
def __init__(self, master):
88
"""Initialize the attributes and set up the interface"""
89
- QDialog.__init__(self, windowTitle=self.captionTitle)
+ QDialog.__init__(self, master, windowTitle=self.captionTitle)
90
WidgetMessagesMixin.__init__(self)
91
self.setLayout(QVBoxLayout())
92
@@ -182,6 +182,10 @@ def hideEvent(event):
182
183
def deleteEvent():
184
vizrank.keep_running = False
185
+ if vizrank._thread is not None and vizrank._thread.isRunning():
186
+ vizrank._thread.quit()
187
+ vizrank._thread.wait()
188
+
189
master_delete_event()
190
191
master.closeEvent = closeEvent
0 commit comments