From 087adef8dfd9f48828a6a7e3ec553e07cf8e3e9b Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Fri, 2 Jul 2021 12:34:24 +0200 Subject: [PATCH] fix(StatusChatListAndCategories): make chat list visibily flag work Closes #217 --- .../src/StatusQ/Components/StatusChatListAndCategories.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/StatusQ/src/StatusQ/Components/StatusChatListAndCategories.qml b/ui/StatusQ/src/StatusQ/Components/StatusChatListAndCategories.qml index 9162506a27..e0c8f0b0a0 100644 --- a/ui/StatusQ/src/StatusQ/Components/StatusChatListAndCategories.qml +++ b/ui/StatusQ/src/StatusQ/Components/StatusChatListAndCategories.qml @@ -53,7 +53,7 @@ Item { StatusChatList { id: statusChatList anchors.horizontalCenter: parent.horizontalCenter - visible: !!chatListItems.model && chatListItems.model.count > 0 + visible: !!chatListItems.model && chatListItems.count > 0 selectedChatId: statusChatListAndCategories.selectedChatId onChatItemSelected: statusChatListAndCategories.chatItemSelected(id) onChatItemUnmuted: statusChatListAndCategories.chatItemUnmuted(id)