fix(create/join chat): icon buttons were highlighted always
Closes #5146 Closes #5137
This commit is contained in:
parent
d35344834e
commit
7a89781c38
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue