commit 614a38ae5ca02ccb01dfe6232fe1f00cacf4941f
parent cc5624fb201f07755e0b27932af443f86fbb390d
Author: SomberNight <somber.night@protonmail.com>
Date: Sun, 23 Feb 2020 20:20:00 +0100
qt coin control status bar: don't defer 'Coins' tab updates
otherwise the cc sb only gets updated if tab when that tab is visible
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/electrum/gui/qt/utxo_list.py b/electrum/gui/qt/utxo_list.py
@@ -71,8 +71,7 @@ class UTXOList(MyTreeView):
self.update()
def update(self):
- if self.maybe_defer_update():
- return
+ # not calling maybe_defer_update() as it interferes with coincontrol status bar
utxos = self.wallet.get_utxos()
self._maybe_reset_spend_list(utxos)
self._utxo_dict = {}