URI: 
       tkivy: fix - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 7e39052c595c9fa29ddee7aee1048082e570d005
   DIR parent 167088e22a422366297d26eb764795eb37e0c0f7
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Thu, 17 Mar 2016 11:13:18 +0100
       
       kivy: fix
       
       Diffstat:
         M gui/kivy/main_window.py             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py
       t@@ -556,7 +556,7 @@ class ElectrumWindow(App):
            @profiler
            def update_wallet(self, *dt):
                self._trigger_update_status()
       -        if self.wallet.up_to_date or not self.network or not self.network.is_connected():
       +        if self.wallet and (self.wallet.up_to_date or not self.network or not self.network.is_connected()):
                    self.update_tabs()
        
            @profiler