diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2017-12-05 01:28:24 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:01 +0100 |
| commit | 6d31c48522bb52b5dd18717c44362de1e9b5b0a2 (patch) | |
| tree | 9885aed1306b4a2c712c592cf87045081f2c5a6a | |
| parent | 901e77e6f1d7c29502498278bd3f3a04fd0df240 (diff) | |
| download | monzero-gui-6d31c48522bb52b5dd18717c44362de1e9b5b0a2.tar.gz monzero-gui-6d31c48522bb52b5dd18717c44362de1e9b5b0a2.tar.xz monzero-gui-6d31c48522bb52b5dd18717c44362de1e9b5b0a2.zip | |
LineEdit: cursor: pointer for QML rich text on input labels
| -rw-r--r-- | components/LineEdit.qml | 6 |
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{ |
