From 05a547971ddf437f2d82fe1c0c2825f86f981c32 Mon Sep 17 00:00:00 2001 From: miruka Date: Sun, 17 May 2020 14:41:25 -0400 Subject: [PATCH] Fix clicking on Account not updating highlight --- src/gui/MainPane/RoomList.qml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/gui/MainPane/RoomList.qml b/src/gui/MainPane/RoomList.qml index 247b830f..b93c7c9a 100644 --- a/src/gui/MainPane/RoomList.qml +++ b/src/gui/MainPane/RoomList.qml @@ -30,10 +30,7 @@ HListView { totalMessageIndicator.visible: false - onLeftClicked: pageLoader.showPage( - "AccountSettings/AccountSettings", {userId: model.id} - ) - + onLeftClicked: showItemAtIndex(model.index) onCollapsedChanged: { print(wantedUserId, model.id); if (wantedUserId === model.id) correctTimer.start()} }