Browse Source

kivy: fix

283
ThomasV 9 years ago
parent
commit
7e39052c59
  1. 2
      gui/kivy/main_window.py

2
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

Loading…
Cancel
Save