forked from mirror/openmw-tes3mp
fixed search result formatting
This commit is contained in:
parent
cb6caf5e39
commit
66c866aec9
1 changed files with 4 additions and 4 deletions
|
@ -81,15 +81,15 @@ QString CSMTools::Search::formatDescription (const QString& description, int pos
|
|||
{
|
||||
QString text (description);
|
||||
|
||||
// compensate for Windows nonsense
|
||||
text.remove ('\r');
|
||||
|
||||
// split
|
||||
QString highlight = flatten (text.mid (pos, length));
|
||||
QString before = flatten (mPaddingBefore<=pos ?
|
||||
QString before = flatten (mPaddingBefore>=pos ?
|
||||
text.mid (0, pos) : text.mid (pos-mPaddingBefore, mPaddingBefore));
|
||||
QString after = flatten (text.mid (pos+length, mPaddingAfter));
|
||||
|
||||
// compensate for Windows nonsense
|
||||
text.remove ('\r');
|
||||
|
||||
// join
|
||||
text = before + "<b>" + highlight + "</b>" + after;
|
||||
|
||||
|
|
Loading…
Reference in a new issue