mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Merge branch 'pr1732'
This commit is contained in:
commit
b22945b46a
|
@ -211,7 +211,7 @@ QString ChatMessage::detectQuotes(const QString& str, MessageType type)
|
|||
// don't quote first line in action message. This makes co-existence of
|
||||
// quotes and action messages possible, since only first line can cause
|
||||
// problems in case where there is quote in it used.
|
||||
if (QRegExp("^(>|>)( |[[]|>|[^_\\d\\W]).*").exactMatch(messageLines[i])) {
|
||||
if (QRegExp("^(>|>).*").exactMatch(messageLines[i])) {
|
||||
if (i > 0 || type != ACTION)
|
||||
quotedText += "<span class=quote>" + messageLines[i] + "</span>";
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue
Block a user