aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--components/LineEdit.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/components/LineEdit.qml b/components/LineEdit.qml
index c4bfdfc2..5f636a06 100644
--- a/components/LineEdit.qml
+++ b/components/LineEdit.qml
@@ -96,6 +96,12 @@ Item {
textFormat: Text.RichText
color: "white"
onLinkActivated: item.labelLinkActivated()
+
+ MouseArea {
+ anchors.fill: parent
+ acceptedButtons: Qt.NoButton
+ cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
+ }
}
Item{