mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
Show outgoing Lightning paymenst with red description
This commit is contained in:
parent
cbd146ad15
commit
bcae8ed1ad
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ class HistoryModel(QAbstractItemModel, Logger):
|
|||
# and self.parent.wallet.invoices.paid.get(tx_hash):
|
||||
# return QVariant(read_QIcon("seal"))
|
||||
elif col in (HistoryColumns.DESCRIPTION, HistoryColumns.AMOUNT) \
|
||||
and role == Qt.ForegroundRole and not is_lightning and tx_item['value'].value < 0:
|
||||
and role == Qt.ForegroundRole and tx_item['value'].value < 0:
|
||||
red_brush = QBrush(QColor("#BC1E1E"))
|
||||
return QVariant(red_brush)
|
||||
elif col == HistoryColumns.FIAT_VALUE and role == Qt.ForegroundRole \
|
||||
|
|
Loading…
Add table
Reference in a new issue