diff --git a/components/Label.qml b/components/Label.qml index 8437dbf6..3f965901 100644 --- a/components/Label.qml +++ b/components/Label.qml @@ -69,5 +69,10 @@ Item { color: fontColor onLinkActivated: item.linkActivated() textFormat: parent.textFormat + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.NoButton + cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor + } } }