mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(chatform): add space for current copy link
This commit is contained in:
parent
65b1463933
commit
41a781d3f8
|
@ -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