fix .csv import not using faster QPlainTextEdit

This commit is contained in:
Damien Elmes 2021-03-22 11:26:49 +10:00
parent ba1742aee2
commit 87801668e9

View File

@ -222,7 +222,7 @@ class ImportDialog(QDialog):
if self.importer.log:
txt += "\n".join(self.importer.log)
self.close()
showText(txt)
showText(txt, plain_text_edit=True)
self.mw.reset()
self.mw.taskman.run_in_background(self.importer.run, on_done)