mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
fix: return None if user presses cancel
This commit is contained in:
parent
0eead38332
commit
2fb738be59
1 changed files with 2 additions and 1 deletions
|
@ -178,7 +178,8 @@ class InstallWizard(QDialog):
|
||||||
vbox.addLayout(ok_cancel_buttons(self, _('Next')))
|
vbox.addLayout(ok_cancel_buttons(self, _('Next')))
|
||||||
|
|
||||||
self.set_layout(vbox)
|
self.set_layout(vbox)
|
||||||
if not self.exec_(): return None, None
|
if not self.exec_():
|
||||||
|
return None
|
||||||
|
|
||||||
mpk = str(mpk_e.toPlainText()).strip()
|
mpk = str(mpk_e.toPlainText()).strip()
|
||||||
chain = str(chain_e.toPlainText()).strip()
|
chain = str(chain_e.toPlainText()).strip()
|
||||||
|
|
Loading…
Add table
Reference in a new issue