From 33a1e2aa2de278edd472dfe0b4630a23cc018a27 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 14 Sep 2014 12:09:12 +0200 Subject: [PATCH] update_account_selector after creating/deleting account --- gui/qt/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index e24534b7..28737fe3 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1428,6 +1428,7 @@ class ElectrumWindow(QMainWindow): def delete_pending_account(self, k): self.wallet.delete_pending_account(k) self.update_address_tab() + self.update_account_selector() def create_receive_menu(self, position): # fixme: this function apparently has a side effect. @@ -1829,6 +1830,7 @@ class ElectrumWindow(QMainWindow): self.wallet.create_pending_account(name, password) self.update_address_tab() + self.update_account_selector() self.tabs.setCurrentIndex(3)