diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py index d0b6da39e..5c890e1f2 100644 --- a/gui/qt/__init__.py +++ b/gui/qt/__init__.py @@ -218,6 +218,11 @@ class ElectrumGui: #lite window self.init_lite() + # plugins interact with main window + run_hook('init_qt', self) + + w.load_wallet(wallet) + # initial configuration if self.config.get('hide_gui') is True and self.tray.isVisible(): self.main_window.hide() @@ -228,11 +233,6 @@ class ElectrumGui: else: self.go_full() - # plugins interact with main window - run_hook('init_qt', self) - - w.load_wallet(wallet) - s = Timer() s.start()