Browse Source

Merge pull request #2918 from SomberNight/qt_plugins_grid

fix qt plugins crash
seed_v14
ThomasV 7 years ago
committed by GitHub
parent
commit
6e936db94a
  1. 2
      gui/qt/main_window.py

2
gui/qt/main_window.py

@ -2827,7 +2827,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
except Exception:
self.print_msg("error: cannot display plugin", name)
traceback.print_exc(file=sys.stdout)
grid.setRowStretch(i+1,1)
grid.setRowStretch(len(plugins.descriptions.values()), 1)
vbox.addLayout(Buttons(CloseButton(d)))
d.exec_()

Loading…
Cancel
Save