tqt coin control status bar: don't defer 'Coins' tab updates - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 614a38ae5ca02ccb01dfe6232fe1f00cacf4941f DIR parent cc5624fb201f07755e0b27932af443f86fbb390d HTML 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: M electrum/gui/qt/utxo_list.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- DIR diff --git a/electrum/gui/qt/utxo_list.py b/electrum/gui/qt/utxo_list.py t@@ -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 = {}