fix: move test one line up

This commit is contained in:
ThomasV 2012-06-10 21:32:07 +02:00
parent 00c400f9fe
commit 1f97dbc96e
1 changed files with 1 additions and 1 deletions

View File

@ -279,8 +279,8 @@ class ElectrumWindow(QMainWindow):
def create_history_menu(self, position):
self.history_list.selectedIndexes()
item = self.history_list.currentItem()
tx_hash = str(item.toolTip(0))
if not item: return
tx_hash = str(item.toolTip(0))
menu = QMenu()
menu.addAction(_("Copy ID to Clipboard"), lambda: self.app.clipboard().setText(tx_hash))
menu.addAction(_("Details"), lambda: self.tx_details(tx_hash))