From 7a89781c3801a9fe6a76922fc090e62841e14fdd Mon Sep 17 00:00:00 2001 From: Alexandra Betouni Date: Tue, 29 Mar 2022 00:43:04 +0300 Subject: [PATCH] fix(create/join chat): icon buttons were highlighted always Closes #5146 Closes #5137 --- ui/app/AppLayouts/Chat/views/ContactsColumnView.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/app/AppLayouts/Chat/views/ContactsColumnView.qml b/ui/app/AppLayouts/Chat/views/ContactsColumnView.qml index 22fff92029..7c059c30a0 100644 --- a/ui/app/AppLayouts/Chat/views/ContactsColumnView.qml +++ b/ui/app/AppLayouts/Chat/views/ContactsColumnView.qml @@ -88,6 +88,7 @@ Item { StatusIconTabButton { icon.name: "public-chat" + checked: publicChatCommunityContextMenu.visible onClicked: { publicChatCommunityContextMenu.popup(); } StatusPopupMenu { id: publicChatCommunityContextMenu @@ -112,6 +113,7 @@ Item { StatusIconTabButton { icon.name: "edit" + checked: root.store.openCreateChat onClicked: { root.store.openCreateChat = !root.store.openCreateChat; }