fix(ChatView): unbreak setting community emoji
need to pass around the `emojiPopup`
This commit is contained in:
parent
fda78a1003
commit
c800cbec44
|
@ -21,6 +21,7 @@ RowLayout {
|
|||
|
||||
property var rootStore
|
||||
property var chatContentModule: root.rootStore.currentChatContentModule()
|
||||
property var emojiPopup
|
||||
property int padding: 8
|
||||
|
||||
signal searchButtonClicked()
|
||||
|
|
|
@ -67,6 +67,7 @@ StatusSectionLayout {
|
|||
id: headerContent
|
||||
visible: !!root.rootStore.currentChatContentModule()
|
||||
rootStore: root.rootStore
|
||||
emojiPopup: root.emojiPopup
|
||||
onSearchButtonClicked: root.openAppSearch()
|
||||
}
|
||||
|
||||
|
@ -178,7 +179,6 @@ StatusSectionLayout {
|
|||
|
||||
ConfirmationDialog {
|
||||
id: removeContactConfirmationDialog
|
||||
// % "Remove contact"
|
||||
header.title: qsTr("Remove contact")
|
||||
confirmationText: qsTr("Are you sure you want to remove this contact?")
|
||||
onConfirmButtonClicked: {
|
||||
|
|
Loading…
Reference in New Issue