summaryrefslogtreecommitdiffstats
path: root/fswidget.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 /fswidget.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 'fswidget.cpp')
-rw-r--r--fswidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/fswidget.cpp b/fswidget.cpp
index e7e7278..739946d 100644
--- a/fswidget.cpp
+++ b/fswidget.cpp
@@ -312,8 +312,8 @@ void FSWidget::gatherData(const QString &curDir){
QIcon imageIcon = Helper::icon(QColor(255,85,255), Qt::white, 'P', true, true);
QIcon otherIcon = Helper::icon(QColor(255,85,255), Qt::white, 'O', true, true);
QBrush defaultBrush(qApp->palette().brush(QPalette::Text));
- QBrush greenBrush(Qt::darkGreen);
- QBrush blueBrush(Qt::darkBlue);
+ QBrush greenBrush(Qt::green);
+ QBrush blueBrush(Qt::blue);
//setup database
QSqlDatabase db = QSqlDatabase::database("treedb");