aboutsummaryrefslogtreecommitdiff
path: root/components/LabelSubheader.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-04-28 18:53:32 +0200
committerSander Ferdinand <sa.ferdinand@gmail.com>2018-05-03 12:35:53 +0200
commit178be387bbf264d9fa5084b0d5fcfa098ef7d981 (patch)
tree75fc13dddbc10dd46d5c74c02dade06dd9b1e63a /components/LabelSubheader.qml
parent1541d87122414e8673fc92d38a5304dfbd1a8744 (diff)
downloadmonzero-gui-178be387bbf264d9fa5084b0d5fcfa098ef7d981.tar.gz
monzero-gui-178be387bbf264d9fa5084b0d5fcfa098ef7d981.tar.xz
monzero-gui-178be387bbf264d9fa5084b0d5fcfa098ef7d981.zip
Cursor pointer on link hover for richtexts
Diffstat (limited to 'components/LabelSubheader.qml')
-rw-r--r--components/LabelSubheader.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/components/LabelSubheader.qml b/components/LabelSubheader.qml
index 96274f4d..50288ecf 100644
--- a/components/LabelSubheader.qml
+++ b/components/LabelSubheader.qml
@@ -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
+ }
}