commit 7e39052c595c9fa29ddee7aee1048082e570d005 parent 167088e22a422366297d26eb764795eb37e0c0f7 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(-)
diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py @@ -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