mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-21 11:08:55 +00:00
fix(CreateChatView): enable mentioning people selected in create chat
Fixes #8749 I couldn't fully test it because it needs #8991 to be fixed to see if the message is sent correctly
This commit is contained in:
parent
321496c807
commit
5e8f3e6565
@ -67,10 +67,10 @@ Item {
|
|||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
icon.name: "public-chat"
|
icon.name: "public-chat"
|
||||||
icon.color: Theme.palette.directColor1
|
icon.color: Theme.palette.directColor1
|
||||||
icon.height: editBtn.icon.height
|
icon.height: startChatButton.icon.height
|
||||||
icon.width: editBtn.icon.width
|
icon.width: startChatButton.icon.width
|
||||||
implicitWidth: editBtn.implicitWidth
|
implicitWidth: startChatButton.implicitWidth
|
||||||
implicitHeight: editBtn.implicitHeight
|
implicitHeight: startChatButton.implicitHeight
|
||||||
type: StatusRoundButton.Type.Tertiary
|
type: StatusRoundButton.Type.Tertiary
|
||||||
|
|
||||||
onClicked: Global.openPopup(publicChatPopupComponent)
|
onClicked: Global.openPopup(publicChatPopupComponent)
|
||||||
@ -84,7 +84,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
StatusIconTabButton {
|
StatusIconTabButton {
|
||||||
id: editBtn
|
id: startChatButton
|
||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
objectName: "startChatButton"
|
objectName: "startChatButton"
|
||||||
icon.name: "edit"
|
icon.name: "edit"
|
||||||
|
@ -156,6 +156,9 @@ Page {
|
|||||||
emojiPopup: root.emojiPopup
|
emojiPopup: root.emojiPopup
|
||||||
stickersPopup: root.stickersPopup
|
stickersPopup: root.stickersPopup
|
||||||
closeGifPopupAfterSelection: true
|
closeGifPopupAfterSelection: true
|
||||||
|
usersStore: ({
|
||||||
|
usersModel: membersSelector.model
|
||||||
|
})
|
||||||
onSendTransactionCommandButtonClicked: {
|
onSendTransactionCommandButtonClicked: {
|
||||||
root.rootStore.createChatStartSendTransactionProcess = true;
|
root.rootStore.createChatStartSendTransactionProcess = true;
|
||||||
membersSelector.createChat();
|
membersSelector.createChat();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user