commit 9782c7fe8e0aea03c89212f0348efd2f821ddfaf
parent 2b81906fddc89157da80f367db231f53e06afb32
Author: ThomasV <thomasv@gitorious>
Date: Tue, 31 Mar 2015 17:34:31 +0200
don't show new account menu
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -223,7 +223,7 @@ class ElectrumWindow(QMainWindow):
self.notify_transactions()
self.update_account_selector()
# update menus
- self.new_account_menu.setEnabled(self.wallet.can_create_accounts())
+ self.new_account_menu.setVisible(self.wallet.can_create_accounts())
self.private_keys_menu.setEnabled(not self.wallet.is_watching_only())
self.password_menu.setEnabled(self.wallet.can_change_password())
self.seed_menu.setEnabled(self.wallet.has_seed())