electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 7d79ecce73fd213f65ba0d61e7583a152ee87a4c
parent bc3ed470e157720eae910f58f4330d1c0692eb61
Author: ThomasV <thomasv@gitorious>
Date:   Sat, 28 Mar 2015 19:11:49 +0100

do not display default label

Diffstat:
Mgui/qt/main_window.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -713,6 +713,8 @@ class ElectrumWindow(QMainWindow): if tx_hash: label, is_default_label = self.wallet.get_label(tx_hash) + if is_default_label: + label = '' else: label = _('Pruned transaction outputs') is_default_label = False