diff --git a/qt/aqt/utils.py b/qt/aqt/utils.py index ceb4db073..5f6449e9c 100644 --- a/qt/aqt/utils.py +++ b/qt/aqt/utils.py @@ -220,6 +220,7 @@ def showText( text = QPlainTextEdit() text.setReadOnly(True) text.setWordWrapMode(QTextOption.NoWrap) + text.setPlainText(txt) else: text = QTextBrowser() text.setOpenExternalLinks(True)