aboutsummaryrefslogtreecommitdiff
path: root/src/qt/addresstablemodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/addresstablemodel.cpp')
-rw-r--r--src/qt/addresstablemodel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp
index eece092f0d..ecf6f3f3d5 100644
--- a/src/qt/addresstablemodel.cpp
+++ b/src/qt/addresstablemodel.cpp
@@ -134,12 +134,12 @@ QVariant AddressTableModel::data(const QModelIndex &index, int role) const
}
return font;
}
- else if (role == Qt::ForegroundRole)
+ else if (role == Qt::BackgroundRole)
{
// Show default address in alternative color
if(priv->isDefaultAddress(rec))
{
- return QColor(0,0,255);
+ return QColor(255,255,128);
}
}
else if (role == Qt::ToolTipRole)