1
0
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:
tux3 2015-05-26 17:34:22 +02:00
commit b22945b46a
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -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