URI: 
       tcall go_lite after load_wallet - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 7a7ad7fe2d3e261b35575c4d78f95a8c25e04cce
   DIR parent 4a28c88946151decab069120de4361351acbdcec
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Thu, 23 Apr 2015 17:18:38 +0200
       
       call go_lite after load_wallet
       
       Diffstat:
         M gui/qt/__init__.py                  |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py
       t@@ -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()
       t@@ -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()