diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-02-05 22:43:33 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2020-02-05 22:43:33 +0100 |
commit | 46a77a8c11b5c945d55327e06d9e00c6b1d44fa3 (patch) | |
tree | 1df12f32fd4e4cc7a4598e97469b31ec11ba9635 /src | |
parent | Bump mtxclient to fix keybackup (diff) | |
download | nheko-46a77a8c11b5c945d55327e06d9e00c6b1d44fa3.tar.xz |
Fix linter issue
Diffstat (limited to '')
-rw-r--r-- | src/ChatPage.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp index d5e3113d..89bfd55a 100644 --- a/src/ChatPage.cpp +++ b/src/ChatPage.cpp @@ -524,7 +524,10 @@ ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent) connect(this, &ChatPage::messageReply, this, [this](const RelatedInfo &related) { view_manager_->updateReplyingEvent(QString::fromStdString(related.related_event)); }); - connect(view_manager_, &TimelineViewManager::replyClosed, text_input_, &TextInputWidget::closeReplyPopup); + connect(view_manager_, + &TimelineViewManager::replyClosed, + text_input_, + &TextInputWidget::closeReplyPopup); instance_ = this; } |