From a9ae426cf5a7a4e7c181b13c3ad1c7724a86abc3 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Fri, 2 Jul 2021 12:30:41 +0200 Subject: [PATCH] fix(StatusChatListAndCategories): ensure chatItemUnmuted event is propagated Closes #219 --- src/StatusQ/Components/StatusChatListAndCategories.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/StatusQ/Components/StatusChatListAndCategories.qml b/src/StatusQ/Components/StatusChatListAndCategories.qml index 2f94bbcc..9162506a 100644 --- a/src/StatusQ/Components/StatusChatListAndCategories.qml +++ b/src/StatusQ/Components/StatusChatListAndCategories.qml @@ -76,6 +76,7 @@ Item { chatList.chatListItems.model: statusChatListAndCategories.chatList.model chatList.selectedChatId: statusChatListAndCategories.selectedChatId chatList.onChatItemSelected: statusChatListAndCategories.chatItemSelected(id) + chatList.onChatItemUnmuted: statusChatListAndCategories.chatItemUnmuted(id) popupMenu: statusChatListAndCategories.categoryPopupMenu chatListPopupMenu: statusChatListAndCategories.chatListPopupMenu