summaryrefslogtreecommitdiffstats
path: root/archivemodel.cpp
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2018-11-23 14:32:51 +0100
committerArno <arno@disconnect.de>2018-11-23 14:32:51 +0100
commitc8bca6e454f395630c51643a3a905fa448e46789 (patch)
tree09fe72aef9de75ad3fd2f0c3ca5239e584ef95cc /archivemodel.cpp
parent7fd099fb737d625befa6f04dcfad1f6c74705e14 (diff)
downloadSheMov-c8bca6e454f395630c51643a3a905fa448e46789.tar.gz
SheMov-c8bca6e454f395630c51643a3a905fa448e46789.tar.bz2
SheMov-c8bca6e454f395630c51643a3a905fa448e46789.zip
Some more color fixes
Don't use the dark variant of hardcoded colors. The non-dark version plays well with a light theme, and even better with a dark one.
Diffstat (limited to 'archivemodel.cpp')
-rw-r--r--archivemodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/archivemodel.cpp b/archivemodel.cpp
index d228011..7c5e46b 100644
--- a/archivemodel.cpp
+++ b/archivemodel.cpp
@@ -98,7 +98,7 @@ QVariant ArchiveModel::data(const QModelIndex &index, int role) const{
if(role == Qt::ForegroundRole){
bool favorite = item->data(Favorite).toBool();
if(favorite){
- return QColor(Qt::darkGreen);
+ return QColor(Qt::green);
}
}
if(role == NameRole){