Skip to content
Snippets Groups Projects
Verified Commit 631a5a11 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix emoji unicodename in tooltip

parent c8c99455
No related branches found
No related tags found
No related merge requests found
Pipeline #4792 passed
......@@ -165,7 +165,7 @@ Menu {
width: stickerDim
height: stickerDim
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
// TODO: maybe add favorites at some point?
onClicked: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment