From 3451140ce784a337aa5f41500daa4613246c6513 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Sun, 10 Apr 2022 15:17:40 +0200 Subject: [PATCH] qt coins list: fix populating labels follow-up https://github.com/spesmilo/electrum/commit/e362d1aac4c326917592bcfe1f5d679f7649366a --- electrum/gui/qt/utxo_list.py | 1 + 1 file changed, 1 insertion(+) 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: