From 86c775d80bd793e28192b669146134a958b21660 Mon Sep 17 00:00:00 2001 From: leedoughty <32392044+leedoughty@users.noreply.github.com> Date: Wed, 26 Nov 2025 17:21:18 +0000 Subject: [PATCH] Update error text format to use RichText rather than PlainText --- qt/aqt/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/aqt/errors.py b/qt/aqt/errors.py index a6d9251e2..76ed1109c 100644 --- a/qt/aqt/errors.py +++ b/qt/aqt/errors.py @@ -179,7 +179,7 @@ def _init_message_box( _mbox.setWindowTitle("Anki") _mbox.setText(user_text) _mbox.setIcon(QMessageBox.Icon.Warning) - _mbox.setTextFormat(Qt.TextFormat.PlainText) + _mbox.setTextFormat(Qt.TextFormat.RichText) def show_help(): openHelp(help_page)