mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 03:42:05 +02:00
LineEdit: cursor: pointer for QML rich text on input labels
This commit is contained in:
parent
901e77e6f1
commit
6d31c48522
@ -96,6 +96,12 @@ Item {
|
|||||||
textFormat: Text.RichText
|
textFormat: Text.RichText
|
||||||
color: "white"
|
color: "white"
|
||||||
onLinkActivated: item.labelLinkActivated()
|
onLinkActivated: item.labelLinkActivated()
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
acceptedButtons: Qt.NoButton
|
||||||
|
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Item{
|
Item{
|
||||||
|
Loading…
Reference in New Issue
Block a user