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

pull/2/head
Sander Ferdinand 7 years ago committed by moneromooo-monero
parent 901e77e6f1
commit 6d31c48522

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