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:
commit
d87f222c5c
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue
Block a user