Cursor pointer on link hover for richtexts

This commit is contained in:
Sander Ferdinand
2018-04-28 18:53:32 +02:00
parent 1541d87122
commit 178be387bb
2 changed files with 8 additions and 1 deletions

View File

@@ -43,4 +43,10 @@ Label {
color: MoneroComponents.Style.dividerColor
opacity: MoneroComponents.Style.dividerOpacity
}
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
}
}