Browse Source

qt history list: rm and fix magic number

hard-fail-on-bad-server-string
SomberNight 5 years ago
parent
commit
4007720b34
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qt/history_list.py

2
electrum/gui/qt/history_list.py

@ -247,7 +247,7 @@ class HistoryModel(QAbstractItemModel, Logger):
def update_label(self, row):
tx_item = self.transactions.value_from_pos(row)
tx_item['label'] = self.parent.wallet.get_label(get_item_key(tx_item))
topLeft = bottomRight = self.createIndex(row, 2)
topLeft = bottomRight = self.createIndex(row, HistoryColumns.DESCRIPTION)
self.dataChanged.emit(topLeft, bottomRight, [Qt.DisplayRole])
self.parent.utxo_list.update()

Loading…
Cancel
Save