update_account_selector after creating/deleting account

This commit is contained in:
ThomasV 2014-09-14 12:09:12 +02:00
parent 815ba4b9eb
commit 33a1e2aa2d
1 changed files with 2 additions and 0 deletions

View File

@ -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)