URI: 
       tfix kivy not updating units in history - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit c3349df724a70b84b36641fe69d3f7dc1a110978
   DIR parent 0cf14635e068876fa9a6b8c02b6c15a1b86948e5
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Thu,  9 Mar 2017 16:55:32 +0100
       
       fix kivy not updating units in history
       
       Diffstat:
         M gui/kivy/uix/screens.py             |       2 +-
         M gui/kivy/uix/ui_screens/history.kv  |       3 +--
       
       2 files changed, 2 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/gui/kivy/uix/screens.py b/gui/kivy/uix/screens.py
       t@@ -144,7 +144,7 @@ class HistoryScreen(CScreen):
                ri.date = status_str
                ri.message = label
                ri.value = value or 0
       -        ri.value_known = value is not None
       +        ri.amount = self.app.format_amount(value, True) if value is not None else '--'
                ri.confirmations = conf
                if self.app.fiat_unit and date:
                    rate = self.app.fx.history_rate(date)
   DIR diff --git a/gui/kivy/uix/ui_screens/history.kv b/gui/kivy/uix/ui_screens/history.kv
       t@@ -20,8 +20,7 @@
            icon: 'atlas://gui/kivy/theming/light/important'
            message: ''
            value: 0
       -    value_known: True
       -    amount: app.format_amount(self.value, True) if self.value_known else '--'
       +    amount: '--'
            amount_color: '#FF6657' if self.value < 0 else '#2EA442'
            confirmations: 0
            date: ''