1
0

Input tx index looks better left-aligned after all

This commit is contained in:
Neil Booth
2015-06-27 11:01:42 +09:00
parent 6c25f637b9
commit 547886d6f1

View File

@@ -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)