1
0

wizard: add bitbox02 new wallet init and checks to new wizard

This commit is contained in:
Sander van Grieken
2023-09-11 10:39:08 +02:00
parent 50d2cdb1b5
commit dd64b5c628
4 changed files with 69 additions and 45 deletions

View File

@@ -167,7 +167,7 @@ class QEAbstractWizard(QDialog, MessageBoxMixin):
self.back_button.setText(_('Back') if self.can_go_back() else _('Cancel'))
self.back_button.setEnabled(not page.busy)
self.next_button.setText(_('Next') if not self.is_last(page.wizard_data) else _('Finish'))
self.next_button.setEnabled(page.valid)
self.next_button.setEnabled(not page.busy and page.valid)
self.main_widget.setVisible(not page.busy and not bool(page.error))
self.please_wait.setVisible(page.busy)
self.please_wait_l.setText(page.busy_msg if page.busy_msg else _("Please wait..."))