1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
This commit is contained in:
Tux3 / Mlkj / !Lev.uXFMLA 2014-10-22 21:23:37 +02:00
parent d92bad3f9c
commit 93ea674e07
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -65,7 +65,7 @@ QString MessageAction::getMessage(QString div)
for (QString& s : messageLines)
{
if (QRegExp("^[ ]*>.*").exactMatch(s))
message_ += "<span class=quote>" + s.right(s.length()-4) + "</span><br/>";
message_ += "<span class=quote>" + s + "</span><br/>";
else
message_ += s + "<br/>";
}