aboutsummaryrefslogtreecommitdiff
path: root/components/LineEdit.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2017-12-05 01:28:24 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:01 +0100
commit6d31c48522bb52b5dd18717c44362de1e9b5b0a2 (patch)
tree9885aed1306b4a2c712c592cf87045081f2c5a6a /components/LineEdit.qml
parent901e77e6f1d7c29502498278bd3f3a04fd0df240 (diff)
downloadmonzero-gui-6d31c48522bb52b5dd18717c44362de1e9b5b0a2.tar.gz
monzero-gui-6d31c48522bb52b5dd18717c44362de1e9b5b0a2.tar.xz
monzero-gui-6d31c48522bb52b5dd18717c44362de1e9b5b0a2.zip
LineEdit: cursor: pointer for QML rich text on input labels
Diffstat (limited to 'components/LineEdit.qml')
-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{