From 058f5cba8294895da638d9f584c4c21f5a6d8ec1 Mon Sep 17 00:00:00 2001 From: bkkcoins Date: Sat, 5 Jan 2013 22:49:19 +0700 Subject: [PATCH] add confirmations to history checkmark tooltips --- lib/gui_qt.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/gui_qt.py b/lib/gui_qt.py index 54b2bdc..9f53aba 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -436,7 +436,7 @@ class ElectrumWindow(QMainWindow): self.history_list.selectedIndexes() item = self.history_list.currentItem() if not item: return - tx_hash = str(item.toolTip(0)) + tx_hash = str(item.data(0, Qt.UserRole).toString()) if not tx_hash: return menu = QMenu() menu.addAction(_("Copy ID to Clipboard"), lambda: self.app.clipboard().setText(tx_hash)) @@ -617,7 +617,8 @@ class ElectrumWindow(QMainWindow): if value < 0: item.setForeground(3, QBrush(QColor("#BC1E1E"))) if tx_hash: - item.setToolTip(0, tx_hash) + item.setData(0, Qt.UserRole, tx_hash) + item.setToolTip(0, "%d %s\nTxId:%s" % (conf, _('Confirmations'), tx_hash) ) if is_default_label: item.setForeground(2, QBrush(QColor('grey'))) -- 1.7.1