mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
Merge pull request #1786
b1b8efd
wizard: use hand cursor instead of arrow (xiphon)
This commit is contained in:
commit
fc06005e3a
1 changed files with 4 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue