tqt: avoid app.palette().text().color(), doesn't work on dark style - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 0677ce6d52b8951df04f31030e52b805027623d2
DIR parent 72957f4d51265f2d0e61d90f92ba42a6e2f92726
HTML Author: Janus <ysangkok@gmail.com>
Date: Mon, 3 Dec 2018 15:54:21 +0100
qt: avoid app.palette().text().color(), doesn't work on dark style
Diffstat:
M electrum/gui/qt/history_list.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py
t@@ -97,7 +97,6 @@ class HistoryList(MyTreeView, AcceptFileDragDrop):
self.blue_brush = QBrush(QColor("#1E1EFF"))
self.red_brush = QBrush(QColor("#BC1E1E"))
self.monospace_font = QFont(MONOSPACE_FONT)
- self.default_color = self.parent.app.palette().text().color()
self.config = parent.config
AcceptFileDragDrop.__init__(self, ".txn")
self.setSortingEnabled(True)
t@@ -399,7 +398,8 @@ class HistoryList(MyTreeView, AcceptFileDragDrop):
cap_gains = self.parent.fx.get_history_capital_gains_config()
items = self.txid_to_items[txid]
self.ensure_fields_available(items, 7 if cap_gains else 5, txid)
- items[5].setForeground(self.blue_brush if not row['fiat_default'] and row['fiat_value'] else self.default_color)
+ if not row['fiat_default'] and row['fiat_value']:
+ items[5].setForeground(self.blue_brush)
value_str = self.parent.fx.format_fiat(row['fiat_value'].value)
items[5].setText(value_str)
items[5].setData(row['fiat_value'].value, self.SORT_ROLE)