add a hook at the end of the gui constructor
[electrum-nvc.git] / gui / gui_classic.py
index c41113c..e63bf0b 100644 (file)
@@ -325,6 +325,9 @@ class ElectrumWindow(QMainWindow):
         # set initial message
         self.console.showMessage(self.wallet.banner)
 
+        # plugins that need to change the GUI do it here
+        self.run_hook('init')
+
 
     # plugins
     def init_plugins(self):