Browse Source

qt coins list: fix populating labels

follow-up e362d1aac4
patch-4
SomberNight 3 years ago
parent
commit
3451140ce7
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 1
      electrum/gui/qt/utxo_list.py

1
electrum/gui/qt/utxo_list.py

@ -118,6 +118,7 @@ class UTXOList(MyTreeView):
utxo_item = [self.std_model.item(row, col) for col in self.Columns]
address = utxo.address
label = self.wallet.get_label_for_txid(utxo.prevout.txid.hex()) or self.wallet.get_label(address)
utxo_item[self.Columns.LABEL].setText(label)
SELECTED_TO_SPEND_TOOLTIP = _('Coin selected to be spent')
if key in (self._spend_set or set()):
for col in utxo_item:

Loading…
Cancel
Save