mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
Hide horizontal scroll bar on history view
This commit is contained in:
parent
ee72d8b7b7
commit
a859145983
2 changed files with 2 additions and 2 deletions
|
@ -116,6 +116,7 @@ void HistoryView::init()
|
|||
|
||||
scroll_area_ = new QScrollArea(this);
|
||||
scroll_area_->setWidgetResizable(true);
|
||||
scroll_area_->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
|
||||
scroll_widget_ = new QWidget();
|
||||
|
||||
|
|
|
@ -28,8 +28,7 @@ HistoryViewItem::HistoryViewItem(const Event &event, bool with_sender, const QSt
|
|||
if (with_sender)
|
||||
sender = event.sender().split(":")[0].split("@")[1];
|
||||
|
||||
auto body = event.content().value("body").toString().simplified();
|
||||
|
||||
auto body = event.content().value("body").toString().trimmed();
|
||||
auto timestamp = QDateTime::fromMSecsSinceEpoch(event.timestamp());
|
||||
auto local_time = timestamp.toString("HH:mm");
|
||||
|
||||
|
|
Loading…
Reference in a new issue