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
This commit is contained in:
SomberNight 2020-02-23 20:20:00 +01:00
parent cc5624fb20
commit 614a38ae5c
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -71,8 +71,7 @@ class UTXOList(MyTreeView):
self.update() self.update()
def update(self): def update(self):
if self.maybe_defer_update(): # not calling maybe_defer_update() as it interferes with coincontrol status bar
return
utxos = self.wallet.get_utxos() utxos = self.wallet.get_utxos()
self._maybe_reset_spend_list(utxos) self._maybe_reset_spend_list(utxos)
self._utxo_dict = {} self._utxo_dict = {}