aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/Label.qml5
1 files changed, 5 insertions, 0 deletions
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
+ }
}
}