electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 241a37d12da9de336836be52b2d1ff04677788e9
parent d5691129bb184a0d2497ce2e32313b672209bb06
Author: ThomasV <thomasv@electrum.org>
Date:   Mon,  2 Sep 2019 18:38:45 +0200

Merge pull request #5253 from AbdussamadA/update-utxo-list-label

Update utxo list when label is changed on history list
Diffstat:
Melectrum/gui/qt/history_list.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py @@ -248,6 +248,7 @@ class HistoryModel(QAbstractItemModel, Logger): tx_item['label'] = self.parent.wallet.get_label(get_item_key(tx_item)) topLeft = bottomRight = self.createIndex(row, 2) self.dataChanged.emit(topLeft, bottomRight, [Qt.DisplayRole]) + self.parent.utxo_list.update() def get_domain(self): '''Overridden in address_dialog.py'''