1
0

qt: initial open existing wallet from wizard,

set window title for wizard dialogs,
catch RuntimeError for WizardComponent.updated signal, widget might be gone
This commit is contained in:
Sander van Grieken
2023-08-15 14:57:03 +02:00
parent 1e570bdd36
commit 83c2eb46bb
4 changed files with 53 additions and 14 deletions

View File

@@ -264,4 +264,7 @@ class WizardComponent(QWidget):
@pyqtSlot()
def on_updated(self, *args):
self.updated.emit(self)
try:
self.updated.emit(self)
except RuntimeError:
pass