show history debits in red

This commit is contained in:
bkkcoins 2013-01-04 12:25:29 +07:00
parent 2ae5f0940a
commit 47145ce1a6
3 changed files with 5 additions and 1 deletions

View File

@ -94,7 +94,7 @@ MiniWindow QPushButton {
color: #333;
}
#history::item
#history
{
color: #888;
}

View File

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

View File

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