2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

fixed << and >> for linux, global people search found part highlight

This commit is contained in:
John Preston
2014-10-23 20:05:33 +04:00
parent 0685cf34d3
commit a9a01cf396
3 changed files with 27 additions and 10 deletions

View File

@@ -2173,8 +2173,8 @@ QString HistoryWidget::prepareMessage(QString result) {
result = result.replace(" --", QString::fromUtf8(" \xe2\x80\x94"));
result = result.replace("-- ", QString::fromUtf8("\xe2\x80\x94 "));
result = result.replace("<<", qsl("\xab"));
result = result.replace(">>", qsl("\xbb"));
result = result.replace("<<", QString::fromUtf8("\xc2\xab"));
result = result.replace(">>", QString::fromUtf8("\xc2\xbb"));
return (cReplaceEmojis() ? replaceEmojis(result) : result).trimmed();
}