No emoji chatbar button on mobile

Hide the emoji button in the `chatbar` and don't instantiate the dialog component on mobile. This isn't needed on mobile as the virtual keyboard can add emojis. Should also save a small amount of memory on mobile from the dialog which is normally always instantiated.
This commit is contained in:
James Graham
2023-08-09 18:10:53 +00:00
parent 80a5daa1f7
commit 018154f555

View File

@@ -85,16 +85,17 @@ QQC2.Control {
property bool isBusy: false
visible: !Kirigami.Settings.isMobile
icon.name: "smiley"
text: i18n("Emojis & Stickers")
displayHint: Kirigami.DisplayHint.IconOnly
checkable: true
onTriggered: {
if (emojiDialog.visible) {
emojiDialog.close()
if (emojiDialog.item.visible) {
emojiDialog.item.close()
} else {
emojiDialog.open()
emojiDialog.item.open()
}
}
},
@@ -393,19 +394,22 @@ QQC2.Control {
}
}
EmojiDialog {
Loader {
id: emojiDialog
x: parent.width - width
y: -implicitHeight // - Kirigami.Units.smallSpacing
active: !Kirigami.Settings.isMobile
sourceComponent: EmojiDialog {
x: root.width - width
y: -implicitHeight // - Kirigami.Units.smallSpacing
modal: false
includeCustom: true
closeOnChosen: false
modal: false
includeCustom: true
closeOnChosen: false
currentRoom: root.currentRoom
currentRoom: root.currentRoom
onChosen: insertText(emoji)
onClosed: if (emojiButton.checked) emojiButton.checked = false
onChosen: insertText(emoji)
onClosed: if (emojiAction.checked) emojiAction.checked = false
}
}
background: Rectangle {