summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/libs/installer/componentmodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/componentmodel.cpp b/src/libs/installer/componentmodel.cpp
index 078afc50a..8becdb191 100644
--- a/src/libs/installer/componentmodel.cpp
+++ b/src/libs/installer/componentmodel.cpp
@@ -229,7 +229,7 @@ QVariant ComponentModel::data(const QModelIndex &index, int role) const
return component->isExpandedByDefault();
}
if (component->isUnstable() && role == Qt::ForegroundRole) {
- return QVariant(QColor(Qt::lightGray));
+ return QVariant(QColor(Qt::darkGray));
}
return component->data(role);
}