kivy: fix

This commit is contained in:
ThomasV 2016-03-17 11:13:18 +01:00
parent 167088e22a
commit 7e39052c59
1 changed files with 1 additions and 1 deletions

View File

@ -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