summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-08-17 19:00:00 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-08-17 19:00:00 +0200
commit5287ba38f9c05c39a49b66d3738a63f2fcfb2fa8 (patch)
treefbded7ad0db18ed4d0a93eda4785dcb1937a6361 /src
parentFi lineendings (diff)
downloadnheko-5287ba38f9c05c39a49b66d3738a63f2fcfb2fa8.tar.xz
Fix all rooms being opened on startup
Diffstat (limited to 'src')
-rw-r--r--src/ChatPage.cpp3
-rw-r--r--src/ChatPage.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChatPage.cpp b/src/ChatPage.cpp

index 88d393ce..615e96fe 100644 --- a/src/ChatPage.cpp +++ b/src/ChatPage.cpp
@@ -140,7 +140,7 @@ ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QWidget *parent) }); connect(this, &ChatPage::leftRoom, this, &ChatPage::removeRoom); - connect(this, &ChatPage::newRoom, this, &ChatPage::changeRoom, Qt::QueuedConnection); + connect(this, &ChatPage::changeToRoom, this, &ChatPage::changeRoom, Qt::QueuedConnection); connect(this, &ChatPage::notificationsRetrieved, this, &ChatPage::sendNotifications); connect(this, &ChatPage::highlightedNotifsRetrieved, @@ -751,6 +751,7 @@ ChatPage::createRoom(const mtx::requests::CreateRoom &req) QString newRoomId = QString::fromStdString(res.room_id.to_string()); emit showNotification(tr("Room %1 created.").arg(newRoomId)); emit newRoom(newRoomId); + emit changeToRoom(newRoomId); }); } diff --git a/src/ChatPage.h b/src/ChatPage.h
index dfe94c37..d79bee46 100644 --- a/src/ChatPage.h +++ b/src/ChatPage.h
@@ -125,6 +125,7 @@ signals: void newSyncResponse(const mtx::responses::Sync &res, const std::string &prev_batch_token); void leftRoom(const QString &room_id); void newRoom(const QString &room_id); + void changeToRoom(const QString &room_id); void initializeViews(const mtx::responses::Rooms &rooms); void initializeEmptyViews();