From 920949498ae900f0d81304e6e7b89efc4ae6348d Mon Sep 17 00:00:00 2001 From: Abdussamad Abdurrazzaq Date: Sun, 7 Apr 2019 08:37:57 +0500 Subject: [PATCH] Update utxo list when label is changed on history list --- electrum/gui/qt/history_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py index f5cefa6de..748dbf123 100644 --- a/electrum/gui/qt/history_list.py +++ b/electrum/gui/qt/history_list.py @@ -217,6 +217,7 @@ class HistoryModel(QAbstractItemModel, PrintError): tx_item['label'] = self.parent.wallet.get_label(tx_item['txid']) 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'''