Update AutoDialog

This commit is contained in:
Leif 2020-12-18 19:32:16 +08:00
parent 03002bbc55
commit ffe71f5851
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ class Worker(QThread):
chars = res[1][0]
cond = res[1][1]
posi = res[0]
strs += "Transcription: " + chars + " Probability: " + str(cond) + " Location: " + json.dumps(posi)
strs += "Transcription: " + chars + " Probability: " + str(cond) + \
" Location: " + json.dumps(posi) +'\n'
# Sending large amounts of data repeatedly through pyqtSignal may affect the program efficiency
self.listValue.emit(strs)
self.mainThread.result_dic = self.result_dic