mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-28 07:15:21 +00:00
parent
dfefeae026
commit
7d099327ae
@ -89,6 +89,7 @@ Item {
|
||||
StatusIconTabButton {
|
||||
icon.name: "public-chat"
|
||||
checked: publicChatCommunityContextMenu.visible
|
||||
highlighted: publicChatCommunityContextMenu.visible
|
||||
onClicked: { publicChatCommunityContextMenu.popup(); }
|
||||
StatusPopupMenu {
|
||||
id: publicChatCommunityContextMenu
|
||||
@ -107,16 +108,27 @@ Item {
|
||||
onTriggered: Global.openPopup(communitiesPopupComponent)
|
||||
enabled: localAccountSensitiveSettings.communitiesEnabled
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
StatusToolTip {
|
||||
text: qsTr("Public chats & communities")
|
||||
visible: parent.hovered
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
StatusIconTabButton {
|
||||
icon.name: "edit"
|
||||
checked: root.store.openCreateChat
|
||||
highlighted: root.store.openCreateChat
|
||||
onClicked: {
|
||||
root.store.openCreateChat = !root.store.openCreateChat;
|
||||
}
|
||||
|
||||
StatusToolTip {
|
||||
text: qsTr("Start chat")
|
||||
visible: parent.hovered
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user