From 676d976e5326b62ee227d1067615394b2a2c3292 Mon Sep 17 00:00:00 2001 From: Sander Ferdinand Date: Mon, 11 Dec 2017 00:32:30 +0100 Subject: [PATCH] Pointinghand cursor for checkboxes --- components/CheckBox.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/CheckBox.qml b/components/CheckBox.qml index fce53ad7..517917a3 100644 --- a/components/CheckBox.qml +++ b/components/CheckBox.qml @@ -76,6 +76,7 @@ RowLayout { MouseArea { anchors.fill: parent + cursorShape: Qt.PointingHandCursor onClicked: { toggle() } @@ -93,6 +94,7 @@ RowLayout { anchors.leftMargin: !isMobile ? 10 : 8 MouseArea { anchors.fill: parent + cursorShape: Qt.PointingHandCursor onClicked: { toggle() }