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 {
|
StatusIconTabButton {
|
||||||
icon.name: "public-chat"
|
icon.name: "public-chat"
|
||||||
|
checked: publicChatCommunityContextMenu.visible
|
||||||
onClicked: { publicChatCommunityContextMenu.popup(); }
|
onClicked: { publicChatCommunityContextMenu.popup(); }
|
||||||
StatusPopupMenu {
|
StatusPopupMenu {
|
||||||
id: publicChatCommunityContextMenu
|
id: publicChatCommunityContextMenu
|
||||||
|
@ -112,6 +113,7 @@ Item {
|
||||||
|
|
||||||
StatusIconTabButton {
|
StatusIconTabButton {
|
||||||
icon.name: "edit"
|
icon.name: "edit"
|
||||||
|
checked: root.store.openCreateChat
|
||||||
onClicked: {
|
onClicked: {
|
||||||
root.store.openCreateChat = !root.store.openCreateChat;
|
root.store.openCreateChat = !root.store.openCreateChat;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue