update_account_selector

This commit is contained in:
thomasv 2013-10-10 13:59:21 +02:00
parent 741e2ee7a9
commit 7a1feb8e67
1 changed files with 12 additions and 12 deletions

View File

@ -251,6 +251,17 @@ class ElectrumWindow(QMainWindow):
return int(qtVersion[0]) >= 4 and int(qtVersion[2]) >= 7
def update_account_selector(self):
# account selector
accounts = self.wallet.get_account_names()
self.account_selector.clear()
if len(accounts) > 1:
self.account_selector.addItems([_("All accounts")] + accounts.values())
self.account_selector.setCurrentIndex(0)
self.account_selector.show()
else:
self.account_selector.hide()
def load_wallet(self, wallet):
import electrum
@ -265,19 +276,8 @@ class ElectrumWindow(QMainWindow):
self.update_wallet()
# Once GUI has been initialized check if we want to announce something since the callback has been called before the GUI was initialized
self.notify_transactions()
# account selector
accounts = self.wallet.get_account_names()
self.account_selector.clear()
if len(accounts) > 1:
self.account_selector.addItems([_("All accounts")] + accounts.values())
self.account_selector.setCurrentIndex(0)
self.account_selector.show()
else:
self.account_selector.hide()
self.update_account_selector()
self.new_account.setEnabled(self.wallet.seed_version>4)
self.update_lock_icon()
self.update_buttons_on_seed()
self.update_console()