mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-03-09 20:21:22 +00:00
fix issue #3 (dark theme compat)
This commit is contained in:
parent
e4347a43b9
commit
aa52972660
@ -488,11 +488,7 @@ QVariant TransactionTableModel::data(const QModelIndex &index, int role) const
|
|||||||
else if (role == Qt::ForegroundRole)
|
else if (role == Qt::ForegroundRole)
|
||||||
{
|
{
|
||||||
/* Non-confirmed transactions are grey */
|
/* Non-confirmed transactions are grey */
|
||||||
if(rec->status.confirmed)
|
if(!rec->status.confirmed)
|
||||||
{
|
|
||||||
return QColor(0, 0, 0);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
return QColor(128, 128, 128);
|
return QColor(128, 128, 128);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user