fix issue #3 (dark theme compat)
This commit is contained in:
parent
e4347a43b9
commit
aa52972660
1 changed files with 1 additions and 5 deletions
|
@ -488,11 +488,7 @@ QVariant TransactionTableModel::data(const QModelIndex &index, int role) const
|
|||
else if (role == Qt::ForegroundRole)
|
||||
{
|
||||
/* Non-confirmed transactions are grey */
|
||||
if(rec->status.confirmed)
|
||||
{
|
||||
return QColor(0, 0, 0);
|
||||
}
|
||||
else
|
||||
if(!rec->status.confirmed)
|
||||
{
|
||||
return QColor(128, 128, 128);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue