diff options
| author | selsta <selsta@sent.at> | 2019-12-20 03:49:31 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-12-20 03:49:31 +0100 |
| commit | 3528bcd6b59be97fa3d18f77f1df9f444ce07725 (patch) | |
| tree | 7b95053fc064307ebc6ce24ea519675bee1b8d01 | |
| parent | 500c7ec82e1d0d8b0f1fb45e2649a7795d4e5a22 (diff) | |
| download | monzero-gui-3528bcd6b59be97fa3d18f77f1df9f444ce07725.tar.gz monzero-gui-3528bcd6b59be97fa3d18f77f1df9f444ce07725.tar.xz monzero-gui-3528bcd6b59be97fa3d18f77f1df9f444ce07725.zip | |
main: show wizard init screen when no wallet is found
| -rw-r--r-- | main.qml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1313,10 +1313,11 @@ ApplicationWindow { } } else console.log("qrScannerEnabled disabled"); - wizard.wizardState = "wizardHome"; if(!walletsFound()) { + wizard.wizardState = "wizardLanguage"; rootItem.state = "wizard" } else { + wizard.wizardState = "wizardHome"; rootItem.state = "normal" openWallet("wizard"); } |
