diff options
author | Arno <arno@disconnect.de> | 2018-11-23 14:32:51 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-11-23 14:32:51 +0100 |
commit | c8bca6e454f395630c51643a3a905fa448e46789 (patch) | |
tree | 09fe72aef9de75ad3fd2f0c3ca5239e584ef95cc /fswidget.cpp | |
parent | 7fd099fb737d625befa6f04dcfad1f6c74705e14 (diff) | |
download | SheMov-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.cpp | 4 |
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"); |