diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-12-07 19:02:48 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-12-07 19:02:48 -0600 |
| commit | fc06005e3a7b6698f4166efe67a2ddef3aa20f35 (patch) | |
| tree | 1f1e29dd2f2f169cc81024ca6925750c313fe891 | |
| parent | c67077e428960448b2cc415e7cef3cb1ae12c8f3 (diff) | |
| parent | b1b8efdc3b2b2c372f3674fde4fb8ef67650654b (diff) | |
| download | monzero-gui-fc06005e3a7b6698f4166efe67a2ddef3aa20f35.tar.gz monzero-gui-fc06005e3a7b6698f4166efe67a2ddef3aa20f35.tar.xz monzero-gui-fc06005e3a7b6698f4166efe67a2ddef3aa20f35.zip | |
Merge pull request #1786
b1b8efd wizard: use hand cursor instead of arrow (xiphon)
| -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() |
