mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-09 20:40:27 +00:00
main: show wizard init screen when no wallet is found
This commit is contained in:
parent
500c7ec82e
commit
3528bcd6b5
1 changed files with 2 additions and 1 deletions
3
main.qml
3
main.qml
|
@ -1313,10 +1313,11 @@ ApplicationWindow {
|
||||||
}
|
}
|
||||||
} else console.log("qrScannerEnabled disabled");
|
} else console.log("qrScannerEnabled disabled");
|
||||||
|
|
||||||
wizard.wizardState = "wizardHome";
|
|
||||||
if(!walletsFound()) {
|
if(!walletsFound()) {
|
||||||
|
wizard.wizardState = "wizardLanguage";
|
||||||
rootItem.state = "wizard"
|
rootItem.state = "wizard"
|
||||||
} else {
|
} else {
|
||||||
|
wizard.wizardState = "wizardHome";
|
||||||
rootItem.state = "normal"
|
rootItem.state = "normal"
|
||||||
openWallet("wizard");
|
openWallet("wizard");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue