Fix emoji unicodename in tooltip

This commit is contained in:
Nicolas Werner 2023-05-25 23:26:39 +02:00
parent c8c99455ec
commit 631a5a11b3
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9

View file

@ -165,7 +165,7 @@ Menu {
width: stickerDim width: stickerDim
height: stickerDim height: stickerDim
hoverEnabled: true hoverEnabled: true
ToolTip.text: ":" + modelData.shortcode + ": - " + (modelData.unicode ? model.unicodeName : modelData.body) ToolTip.text: ":" + modelData.shortcode + ": - " + (modelData.unicode ? modelData.unicodeName : modelData.body)
ToolTip.visible: hovered ToolTip.visible: hovered
// TODO: maybe add favorites at some point? // TODO: maybe add favorites at some point?
onClicked: { onClicked: {