Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(chatform): add space for current copy link
Browse files Browse the repository at this point in the history
  • Loading branch information
Zatsepin Nikita committed May 28, 2017
1 parent 65b1463 commit 41a781d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chatlog/chatmessage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 41a781d

Please sign in to comment.