Browse Source

show history debits in red

283
bkkcoins 12 years ago
parent
commit
47145ce1a6
  1. 2
      data/cleanlook/style.css
  2. 2
      lib/gui_qt.py
  3. 2
      lib/history_widget.py

2
data/cleanlook/style.css

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

2
lib/gui_qt.py

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

2
lib/history_widget.py

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

Loading…
Cancel
Save