Browse Source

fix 'view log' menu (follow-up 2d68350900)

patch-4
ThomasV 3 years ago
parent
commit
1568c10ca0
  1. 2
      electrum/gui/qt/history_list.py

2
electrum/gui/qt/history_list.py

@ -712,7 +712,7 @@ class HistoryList(MyTreeView, AcceptFileDragDrop):
key = tx_item['payment_hash']
log = self.wallet.lnworker.logs.get(key)
if log:
menu.addAction(_("View log"), lambda: self.parent.invoice_list.show_log(key, log))
menu.addAction(_("View log"), lambda: self.parent.send_tab.invoice_list.show_log(key, log))
menu.exec_(self.viewport().mapToGlobal(position))
return
tx_hash = tx_item['txid']

Loading…
Cancel
Save