parent
2274642f12
commit
9eedcd700a
@ -354,7 +354,7 @@ TimelineItem::markReceived()
|
|||||||
void
|
void
|
||||||
TimelineItem::generateBody(const QString &body)
|
TimelineItem::generateBody(const QString &body)
|
||||||
{
|
{
|
||||||
QString content("<span> %1 </span>");
|
QString content("<span>%1</span>");
|
||||||
|
|
||||||
body_ = new QLabel(this);
|
body_ = new QLabel(this);
|
||||||
body_->setFont(font_);
|
body_->setFont(font_);
|
||||||
@ -393,7 +393,7 @@ TimelineItem::generateBody(const QString &userid, const QString &body)
|
|||||||
body_ = new QLabel(this);
|
body_ = new QLabel(this);
|
||||||
body_->setFont(font_);
|
body_->setFont(font_);
|
||||||
body_->setWordWrap(true);
|
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_->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::TextBrowserInteraction);
|
||||||
body_->setOpenExternalLinks(true);
|
body_->setOpenExternalLinks(true);
|
||||||
body_->setMargin(0);
|
body_->setMargin(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user