need rich text in install error, as err msgs have html

This commit is contained in:
Damien Elmes 2019-04-16 17:39:08 +10:00
parent 580d699161
commit b3d48c6de6

View File

@ -574,7 +574,7 @@ class AddonsDialog(QDialog):
showInfo(log_html, parent=self, textFormat="rich")
if errs:
msg = _("Please report this to the respective add-on author(s).")
showWarning("\n\n".join(errs + [msg]), parent=self, textFormat="plain")
showWarning("<br><br>".join(errs + [msg]), parent=self, textFormat="rich")
self.redrawAddons()