Browse Source

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
hard-fail-on-bad-server-string
SomberNight 5 years ago
parent
commit
614a38ae5c
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 3
      electrum/gui/qt/utxo_list.py

3
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 = {}

Loading…
Cancel
Save