1
0

qt coins list: fix populating labels

follow-up e362d1aac4
This commit is contained in:
SomberNight
2022-04-10 15:17:40 +02:00
parent 5bd2524bfb
commit 3451140ce7

View File

@@ -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: