1
0

plugins: call load_wallet in install wizard

This commit is contained in:
ThomasV
2015-06-10 12:40:08 +02:00
parent 479a6f84e7
commit 060e3aa23e
5 changed files with 12 additions and 5 deletions

View File

@@ -2635,7 +2635,7 @@ class ElectrumWindow(QMainWindow):
try:
cb = QCheckBox(descr['fullname'])
cb.setEnabled(is_available(name, self.wallet))
cb.setChecked(p is not None)
cb.setChecked(p is not None and p.is_enabled())
grid.addWidget(cb, i, 0)
if p and p.requires_settings():
w = p.settings_widget(self)