From e127fe6be514052db768d905b40fd590e4a83dba Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 2 Oct 2016 17:54:00 +0200 Subject: [PATCH] fix: do not display hardware plugins in plugin menu --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 051d8080..38275adf 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -2591,7 +2591,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): for i, descr in enumerate(plugins.descriptions.values()): name = descr['__name__'] p = plugins.get(name) - if descr.get('registers_wallet_type'): + if descr.get('registers_keystore'): continue try: cb = QCheckBox(descr['fullname'])