DTA/infoflow tabs: revise update completion signal connection

Bring in line with all other tabs.
This commit is contained in:
Chris PeBenito 2016-03-31 08:22:23 -04:00
parent 1ec35b9e2e
commit f335831de7
2 changed files with 2 additions and 2 deletions

View File

@ -72,9 +72,9 @@ class DomainTransitionAnalysisTab(SEToolsWidget, QScrollArea):
self.worker = ResultsUpdater(self.query)
self.worker.moveToThread(self.thread)
self.worker.raw_line.connect(self.raw_results.appendPlainText)
self.worker.finished.connect(self.update_complete)
self.worker.finished.connect(self.thread.quit)
self.thread.started.connect(self.worker.update)
self.thread.finished.connect(self.update_complete)
# create a "busy, please wait" dialog
self.busy = QProgressDialog(self)

View File

@ -72,9 +72,9 @@ class InfoFlowAnalysisTab(SEToolsWidget, QScrollArea):
self.worker = ResultsUpdater(self.query)
self.worker.moveToThread(self.thread)
self.worker.raw_line.connect(self.raw_results.appendPlainText)
self.worker.finished.connect(self.update_complete)
self.worker.finished.connect(self.thread.quit)
self.thread.started.connect(self.worker.update)
self.thread.finished.connect(self.update_complete)
# create a "busy, please wait" dialog
self.busy = QProgressDialog(self)