1
0

fix: always use UserRole to store the key

This commit is contained in:
ThomasV
2015-04-04 21:38:21 +02:00
parent 3a2e2702bb
commit ff152141ae
3 changed files with 13 additions and 13 deletions

View File

@@ -94,7 +94,7 @@ class HistoryWidget(MyTreeWidget):
menu = QMenu()
menu.addAction(_("Copy ID to Clipboard"), lambda: self.parent.app.clipboard().setText(tx_hash))
menu.addAction(_("Details"), lambda: self.parent.show_transaction(self.wallet.transactions.get(tx_hash)))
menu.addAction(_("Edit description"), lambda: self.edit_label(item, 2))
menu.addAction(_("Edit description"), lambda: self.edit_label(item))
menu.addAction(_("View on block explorer"), lambda: webbrowser.open(block_explorer + tx_hash))
menu.exec_(self.viewport().mapToGlobal(position))