electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 33a1e2aa2de278edd472dfe0b4630a23cc018a27
parent 815ba4b9eb859889eea1cfac3c3e93575ca41317
Author: ThomasV <thomasv@gitorious>
Date:   Sun, 14 Sep 2014 12:09:12 +0200

update_account_selector after creating/deleting account

Diffstat:
Mgui/qt/main_window.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git 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)