commit c6027a35780cb2f00c59e0f2dc1401550433b8c7
parent 9782c7fe8e0aea03c89212f0348efd2f821ddfaf
Author: ThomasV <thomasv@gitorious>
Date: Tue, 31 Mar 2015 17:36:30 +0200
don't show import menu
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -228,7 +228,7 @@ class ElectrumWindow(QMainWindow):
self.password_menu.setEnabled(self.wallet.can_change_password())
self.seed_menu.setEnabled(self.wallet.has_seed())
self.mpk_menu.setEnabled(self.wallet.is_deterministic())
- self.import_menu.setEnabled(self.wallet.can_import())
+ self.import_menu.setVisible(self.wallet.can_import())
self.export_menu.setEnabled(self.wallet.can_export())
self.update_lock_icon()