electrum

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

commit eaa91683da89096827a25d87088e71ad741cd167
parent 8e65df3ae736e9ef29efeadb1c72ad36dd3bb910
Author: ThomasV <thomasv@gitorious>
Date:   Tue, 31 Mar 2015 22:07:32 +0200

text gui: cap size of labels

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

diff --git a/gui/text.py b/gui/text.py @@ -118,6 +118,8 @@ class ElectrumGui: time_str = 'pending' label, is_default_label = self.wallet.get_label(tx_hash) + if len(label) > 40: + label = label[0:37] + '...' self.history.append( format_str%( time_str, label, format_satoshis(value, whitespaces=True), format_satoshis(balance, whitespaces=True) ) )