fix: ensure cursor is changed when hovering a link
This commit is contained in:
parent
dacbadbed1
commit
3951d0fff5
|
@ -56,6 +56,11 @@ Item {
|
|||
|
||||
Qt.openUrlExternally(link)
|
||||
}
|
||||
|
||||
onLinkHovered: {
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
}
|
||||
|
||||
text: {
|
||||
if(contentType === Constants.stickerType) return "";
|
||||
let msg = Utils.linkifyAndXSS(message);
|
||||
|
|
Loading…
Reference in New Issue