1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #4427

Zatsepin Nikita (1):
      fix(chatform): add space for current copy link
This commit is contained in:
sudden6 2017-05-31 13:50:03 +02:00
commit d87f222c5c
No known key found for this signature in database
GPG Key ID: 279509B499E032B9

View File

@ -246,7 +246,7 @@ QString ChatMessage::detectQuotes(const QString& str, MessageType type)
// problems in case where there is quote in it used.
if (QRegExp("^(>|).*").exactMatch(messageLines[i])) {
if (i > 0 || type != ACTION)
quotedText += "<span class=quote>" + messageLines[i] + "</span>";
quotedText += "<span class=quote>" + messageLines[i] + " </span>";
else
quotedText += messageLines[i];
} else {