Skip to content

Commit

Permalink
Fix bug: apply settings (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasgriffin authored Feb 3, 2025
1 parent d8473e1 commit 2f29e9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bitcoin_safe/gui/qt/qt_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,9 @@ def on_qtwallet_apply_setting_changes(self):
):
return

# i have to close it first, to ensure the wallet is shut down completely
self.signals.close_qt_wallet.emit(self.wallet.id)

qt_wallet = QTWallet(
new_wallet,
self.config,
Expand All @@ -534,7 +537,6 @@ def on_qtwallet_apply_setting_changes(self):
parent=self,
)

self.signals.close_qt_wallet.emit(self.wallet.id)
self.signals.add_qt_wallet.emit(qt_wallet, self._file_path, self.password)

def add_sync_tab(self) -> Tuple[SyncTab, QWidget, LabelSyncer]:
Expand Down

0 comments on commit 2f29e9f

Please sign in to comment.