This commit is contained in:
ThomasV 2017-08-28 05:27:15 +02:00
parent 5bf3b26476
commit b46e86d3c7
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class HistoryList(MyTreeWidget):
if self.permit_edit(item, column): if self.permit_edit(item, column):
super(HistoryList, self).on_doubleclick(item, column) super(HistoryList, self).on_doubleclick(item, column)
else: else:
tx_hash = str(item.data(0, Qt.UserRole).toString()) tx_hash = item.data(0, Qt.UserRole)
tx = self.wallet.transactions.get(tx_hash) tx = self.wallet.transactions.get(tx_hash)
self.parent.show_transaction(tx) self.parent.show_transaction(tx)