Remove trailing whitespace from text messages

fixes #216
This commit is contained in:
Konstantinos Sideris 2018-01-23 18:14:13 +02:00
parent 2274642f12
commit 9eedcd700a
1 changed files with 2 additions and 2 deletions

View File

@ -354,7 +354,7 @@ TimelineItem::markReceived()
void
TimelineItem::generateBody(const QString &body)
{
QString content("<span> %1 </span>");
QString content("<span>%1</span>");
body_ = new QLabel(this);
body_->setFont(font_);
@ -393,7 +393,7 @@ TimelineItem::generateBody(const QString &userid, const QString &body)
body_ = new QLabel(this);
body_->setFont(font_);
body_->setWordWrap(true);
body_->setText(QString("<span> %1 </span>").arg(replaceEmoji(body)));
body_->setText(QString("<span>%1</span>").arg(replaceEmoji(body)));
body_->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextBrowserInteraction);
body_->setOpenExternalLinks(true);
body_->setMargin(0);