From 85c7fccdf91a0be87140273009b5d4c80fd9ef13 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 19 Dec 2016 13:25:16 +0100 Subject: [PATCH] fix wizard options (issue #2080) --- gui/qt/installwizard.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 51be7e53a..b2a5c1430 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -264,9 +264,14 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): @wizard_dialog def restore_seed_dialog(self, run_next, test): + options = [] + if self.opt_ext: + options.append('ext') + if self.opt_bip39: + options.append('bip39') title = _('Enter Seed') message = _('Please enter your seed phrase in order to restore your wallet.') - return self.seed_input(title, message, test, ['ext', 'bip39']) + return self.seed_input(title, message, test, options) @wizard_dialog def confirm_seed_dialog(self, run_next, test):