From 4a3320111f92f0217fd1fa7bf935b50fc6e4d7f5 Mon Sep 17 00:00:00 2001 From: miruka Date: Sun, 17 May 2020 15:38:17 -0400 Subject: [PATCH] Remove debug print --- src/gui/MainPane/RoomList.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/MainPane/RoomList.qml b/src/gui/MainPane/RoomList.qml index a6b5a52d..98539447 100644 --- a/src/gui/MainPane/RoomList.qml +++ b/src/gui/MainPane/RoomList.qml @@ -31,8 +31,8 @@ HListView { totalMessageIndicator.visible: false onLeftClicked: showItemAtIndex(model.index) - onCollapsedChanged: { print(wantedUserId, model.id); - if (wantedUserId === model.id) correctTimer.start()} + onCollapsedChanged: + if (wantedUserId === model.id) correctTimer.start() } }