From b1b8efdc3b2b2c372f3674fde4fb8ef67650654b Mon Sep 17 00:00:00 2001 From: xiphon Date: Thu, 6 Dec 2018 21:43:29 +0000 Subject: [PATCH] wizard: use hand cursor instead of arrow --- wizard/WizardOptions.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wizard/WizardOptions.qml b/wizard/WizardOptions.qml index c4366307..1f39d86e 100644 --- a/wizard/WizardOptions.qml +++ b/wizard/WizardOptions.qml @@ -127,6 +127,7 @@ ColumnLayout { MouseArea { id: createWalletArea anchors.fill: parent + cursorShape: Qt.PointingHandCursor hoverEnabled: true onClicked: { page.createWalletClicked() @@ -169,6 +170,7 @@ ColumnLayout { MouseArea { id: recoverWalletArea anchors.fill: parent + cursorShape: Qt.PointingHandCursor hoverEnabled: true onClicked: { page.recoveryWalletClicked() @@ -212,6 +214,7 @@ ColumnLayout { MouseArea { id: openWalletArea anchors.fill: parent + cursorShape: Qt.PointingHandCursor hoverEnabled: true onClicked: { page.openWalletClicked() @@ -257,6 +260,7 @@ ColumnLayout { MouseArea { id: createWalletFromDeviceArea anchors.fill: parent + cursorShape: Qt.PointingHandCursor hoverEnabled: true onClicked: { page.createWalletFromDeviceClicked()