diff options
| author | xiphon <xiphon@protonmail.com> | 2018-12-06 21:43:29 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2018-12-06 21:43:29 +0000 |
| commit | b1b8efdc3b2b2c372f3674fde4fb8ef67650654b (patch) | |
| tree | 6e8a09daf308c97223dc6c4f5a432067e213a597 | |
| parent | 71a1ff6677917e2c8be330c38fa6d3bfb79dffd2 (diff) | |
| download | monzero-gui-b1b8efdc3b2b2c372f3674fde4fb8ef67650654b.tar.gz monzero-gui-b1b8efdc3b2b2c372f3674fde4fb8ef67650654b.tar.xz monzero-gui-b1b8efdc3b2b2c372f3674fde4fb8ef67650654b.zip | |
wizard: use hand cursor instead of arrow
| -rw-r--r-- | wizard/WizardOptions.qml | 4 |
1 files changed, 4 insertions, 0 deletions
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() |
