Skip to content

Commit

Permalink
Namecoin: Use named tx_desc arg for show_transaction in UNOList
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Feb 17, 2020
1 parent 455788f commit 5feed4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum_nmc/electrum/gui/qt/uno_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def create_menu(self, position):
if tx:
label = self.wallet.get_label(txid) or None # Prefer None if empty (None hides the Description: field in the window)
menu.addAction(_("Configure"), lambda: self.configure_selected_item())
menu.addAction(_("Transaction Details"), lambda: self.parent.show_transaction(tx, label))
menu.addAction(_("Transaction Details"), lambda: self.parent.show_transaction(tx, tx_desc=label))

# "Copy ..."

Expand Down

0 comments on commit 5feed4e

Please sign in to comment.