Fix warning about missing argument qml signal

This commit is contained in:
Laurent Montel
2023-08-31 11:20:31 +02:00
committed by Tobias Fella
parent e09f31f891
commit a3423e5724
4 changed files with 4 additions and 4 deletions

View File

@@ -411,7 +411,7 @@ QQC2.Control {
currentRoom: root.currentRoom
onChosen: insertText(emoji)
onChosen: emoji => insertText(emoji)
onClosed: if (emojiAction.checked) emojiAction.checked = false
}
}

View File

@@ -116,7 +116,7 @@ ColumnLayout {
Layout.fillWidth: true
Layout.fillHeight: true
withCustom: root.includeCustom
onChosen: root.chosen(unicode)
onChosen: unicode => root.chosen(unicode)
header: categories
Keys.forwardTo: searchField
stickers: root.selectedType === 1