diff --git a/electrum/gui/qt/utxo_list.py b/electrum/gui/qt/utxo_list.py index c33c40a53..e62c3070b 100644 --- a/electrum/gui/qt/utxo_list.py +++ b/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: