mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 10:15:20 +00:00
fix: do not display hardware plugins in plugin menu
This commit is contained in:
parent
c7ff3ba705
commit
e127fe6be5
1 changed files with 1 additions and 1 deletions
|
@ -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'])
|
||||
|
|
Loading…
Add table
Reference in a new issue