mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-26 23:13:25 +00:00
fix: move test one line up
This commit is contained in:
parent
00c400f9fe
commit
1f97dbc96e
1 changed files with 1 additions and 1 deletions
|
@ -279,8 +279,8 @@ class ElectrumWindow(QMainWindow):
|
||||||
def create_history_menu(self, position):
|
def create_history_menu(self, position):
|
||||||
self.history_list.selectedIndexes()
|
self.history_list.selectedIndexes()
|
||||||
item = self.history_list.currentItem()
|
item = self.history_list.currentItem()
|
||||||
tx_hash = str(item.toolTip(0))
|
|
||||||
if not item: return
|
if not item: return
|
||||||
|
tx_hash = str(item.toolTip(0))
|
||||||
menu = QMenu()
|
menu = QMenu()
|
||||||
menu.addAction(_("Copy ID to Clipboard"), lambda: self.app.clipboard().setText(tx_hash))
|
menu.addAction(_("Copy ID to Clipboard"), lambda: self.app.clipboard().setText(tx_hash))
|
||||||
menu.addAction(_("Details"), lambda: self.tx_details(tx_hash))
|
menu.addAction(_("Details"), lambda: self.tx_details(tx_hash))
|
||||||
|
|
Loading…
Add table
Reference in a new issue