From 614a38ae5ca02ccb01dfe6232fe1f00cacf4941f Mon Sep 17 00:00:00 2001 From: SomberNight Date: Sun, 23 Feb 2020 20:20:00 +0100 Subject: [PATCH] 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 --- electrum/gui/qt/utxo_list.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/electrum/gui/qt/utxo_list.py b/electrum/gui/qt/utxo_list.py index 7063f17cf..257abf571 100644 --- 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 = {}