1
mirror of https://github.com/monero-project/monero-gui synced 2025-01-03 20:56:23 +01:00

LineEdit: cursor: pointer for QML rich text on input labels

This commit is contained in:
Sander Ferdinand 2017-12-05 01:28:24 +01:00 committed by moneromooo-monero
parent 901e77e6f1
commit 6d31c48522

View File

@ -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{