Browse Source

kivy: fix on_history

master
ThomasV 10 years ago
parent
commit
d3d0e3bacb
  1. 2
      gui/kivy/main_window.py

2
gui/kivy/main_window.py

@ -99,7 +99,7 @@ class ElectrumWindow(App):
def on_history(self, d): def on_history(self, d):
#Logger.info("on_history") #Logger.info("on_history")
if self.history_screen: if self.history_screen:
self.history_screen.update() Clock.schedule_once(lambda dt: self.history_screen.update())
def _get_bu(self): def _get_bu(self):
return self.electrum_config.get('base_unit', 'mBTC') return self.electrum_config.get('base_unit', 'mBTC')

Loading…
Cancel
Save