1
0

Adjust colors if dark color scheme is used

This commit is contained in:
Johann Bauer
2017-10-04 15:09:31 +02:00
parent 91ed74a95f
commit 5c2beb4ab5
10 changed files with 60 additions and 26 deletions

View File

@@ -53,7 +53,7 @@ class UTXOList(MyTreeWidget):
utxo_item.setFont(4, QFont(MONOSPACE_FONT))
utxo_item.setData(0, Qt.UserRole, name)
if self.wallet.is_frozen(address):
utxo_item.setBackground(0, QColor('lightblue'))
utxo_item.setBackground(0, ColorScheme.BLUE.as_color(True))
self.addChild(utxo_item)
def create_menu(self, position):