fix(@desktop/chat): message box buttons do not work in group chat creation screen

This commit is contained in:
mprakhov 2023-01-08 22:59:05 +02:00 committed by Mykhailo Prakhov
parent 364124b1ed
commit 0675d6a7d9
2 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,7 @@ Page {
property var rootStore
property var emojiPopup: null
property var stickersPopup: null
QtObject {
id: d
@ -153,6 +154,7 @@ Page {
visible: membersSelector.model.count > 0
chatType: membersSelector.model.count === 1? Constants.chatType.oneToOne : Constants.chatType.privateGroupChat
emojiPopup: root.emojiPopup
stickersPopup: root.stickersPopup
closeGifPopupAfterSelection: true
onSendTransactionCommandButtonClicked: {
root.rootStore.createChatStartSendTransactionProcess = true;

View File

@ -1014,6 +1014,7 @@ Item {
sourceComponent: CreateChatView {
rootStore: chatLayoutContainer.rootStore
emojiPopup: statusEmojiPopup
stickersPopup: statusStickersPopup
}
}
}