From 3528bcd6b59be97fa3d18f77f1df9f444ce07725 Mon Sep 17 00:00:00 2001 From: selsta Date: Fri, 20 Dec 2019 03:49:31 +0100 Subject: [PATCH] main: show wizard init screen when no wallet is found --- main.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.qml b/main.qml index 997c3511..238ef3f7 100644 --- a/main.qml +++ b/main.qml @@ -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"); }