Use bold instead of underlining to mark the characters we're matching.

This commit is contained in:
Richard Kimberly Heck 2018-10-18 21:47:22 -04:00
parent 1410eeb10e
commit 4b716dd63d
2 changed files with 2 additions and 2 deletions

View File

@ -270,7 +270,7 @@ QString CCItemDelegate::underlineFilter(QString const & s) const
return s;
QString r(s);
QRegExp pattern(charFilterRegExpC(f));
r.replace(pattern, "<u>\\1</u>");
r.replace(pattern, "<b>\\1</b>");
return r;
}

View File

@ -301,7 +301,7 @@ QString LayoutItemDelegate::underlineFilter(QString const & s) const
return s;
QString r(s);
QRegExp pattern(charFilterRegExpC(f));
r.replace(pattern, "<u>\\1</u>");
r.replace(pattern, "<b>\\1</b>");
return r;
}