diff options
| -rw-r--r-- | main.qml | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -1679,6 +1679,15 @@ ApplicationWindow { anchors.right: parent.right state: "Transfer" } + + WizardController { + id: wizard + anchors.fill: parent + onUseMoneroClicked: { + rootItem.state = "normal"; + appWindow.openWallet("wizard"); + } + } } FastBlur { @@ -1689,14 +1698,6 @@ ApplicationWindow { visible: passwordDialog.visible || inputDialog.visible || splash.visible } - WizardController { - id: wizard - anchors.fill: parent - onUseMoneroClicked: { - rootItem.state = "normal"; - appWindow.openWallet("wizard"); - } - } WizardLang { id: languageView |
