Merge pull request #2529

4cc3d3f Label: change cursor on link hover (selsta)
This commit is contained in:
luigi1111 2019-12-03 22:29:14 -06:00
commit 04b91e76f2
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -69,5 +69,10 @@ Item {
color: fontColor
onLinkActivated: item.linkActivated()
textFormat: parent.textFormat
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
}
}
}