From 18c044e27bbc95aae3d5e2a73f6a412a689b42aa Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Thu, 22 Aug 2019 17:46:49 -0300 Subject: [PATCH] info: rendering full field as plain text --- bauh/view/qt/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/view/qt/info.py b/bauh/view/qt/info.py index b174f96d..38a68f84 100644 --- a/bauh/view/qt/info.py +++ b/bauh/view/qt/info.py @@ -88,7 +88,7 @@ class InfoDialog(QDialog): self.gbox_info.hide() self.toolbar_field.show() self.text_field.show() - self.text_field.appendHtml(val) + self.text_field.setPlainText(val) bt_full_field = QPushButton(self.i18n['show'].capitalize()) bt_full_field.clicked.connect(show_full_field)