updated indent spacing

This commit is contained in:
bkkcoins 2013-01-04 12:33:57 +07:00
parent 47145ce1a6
commit 251e4529b6
2 changed files with 2 additions and 2 deletions

View File

@ -600,7 +600,7 @@ class ElectrumWindow(QMainWindow):
item.setFont(3, QFont(MONOSPACE_FONT))
item.setFont(4, QFont(MONOSPACE_FONT))
if value < 0:
item.setForeground(3, QBrush(QColor("#BC1E1E")))
item.setForeground(3, QBrush(QColor("#BC1E1E")))
if tx_hash:
item.setToolTip(0, tx_hash)
if is_default_label:

View File

@ -21,6 +21,6 @@ class HistoryWidget(QTreeWidget):
date = "Unknown"
item = QTreeWidgetItem([amount, address, date])
if float(amount) < 0:
item.setForeground(0, QBrush(QColor("#BC1E1E")))
item.setForeground(0, QBrush(QColor("#BC1E1E")))
self.insertTopLevelItem(0, item)