diff --git a/ankiqt/ui/utils.py b/ankiqt/ui/utils.py index 0d9f7699c..a01b680d5 100644 --- a/ankiqt/ui/utils.py +++ b/ankiqt/ui/utils.py @@ -200,9 +200,9 @@ def restoreHeader(widget, key): def mungeQA(deck, txt): txt = renderLatex(deck, txt) txt = stripSounds(txt) - # webkit currently doesn't handle underline - txt = txt.replace("text-decoration: underline;", - "border-bottom: 1px solid #000;") + # webkit currently doesn't handle bold properly + txt = txt.replace("font-weight: 600;", + "font-weight: 900;") return txt def getBase(deck, card):