From 547886d6f151c0f5175fcb2d1150292e9c7b484b Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 27 Jun 2015 11:01:42 +0900 Subject: [PATCH] Input tx index looks better left-aligned after all --- gui/qt/transaction_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py index d8fcc0930..37377e262 100644 --- a/gui/qt/transaction_dialog.py +++ b/gui/qt/transaction_dialog.py @@ -251,7 +251,7 @@ class TxDialog(QWidget): prevout_hash = x.get('prevout_hash') prevout_n = x.get('prevout_n') cursor.insertText(prevout_hash[0:8] + '...', ext) - cursor.insertText(prevout_hash[-8:] + ":%3d " % prevout_n, ext) + cursor.insertText(prevout_hash[-8:] + ":%-4d " % prevout_n, ext) addr = x.get('address') if addr == "(pubkey)": _addr = self.wallet.find_pay_to_pubkey_address(prevout_hash, prevout_n)