aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/qquickthemedata.cpp
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-04-24 00:40:49 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-04-23 23:11:53 +0000
commit2df3b1b930e3d151e14ace3f464b9caeadff0b04 (patch)
treef5071bf92b2f97507a26643fc7906f1fb440efcd /src/imports/controls/qquickthemedata.cpp
parent1190d5c95846db8dbb6676c97a30befebb640076 (diff)
Add Theme::disabledColor
Change-Id: I8bfc5a89aa75addd4cb1a5c0d5b58ea8b2bcf67c Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/qquickthemedata.cpp')
-rw-r--r--src/imports/controls/qquickthemedata.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/imports/controls/qquickthemedata.cpp b/src/imports/controls/qquickthemedata.cpp
index 73070231..637a5643 100644
--- a/src/imports/controls/qquickthemedata.cpp
+++ b/src/imports/controls/qquickthemedata.cpp
@@ -84,6 +84,7 @@ bool QQuickThemeData::load(const QString &filePath)
d->accentColor = readColorValue(theme.value(QStringLiteral("accentColor")), QColor("#7bc258"));
d->backgroundColor = readColorValue(theme.value(QStringLiteral("backgroundColor")), QColor("#ffffff"));
d->baseColor = readColorValue(theme.value(QStringLiteral("baseColor")), QColor("#eeeeee"));
+ d->disabledColor = readColorValue(theme.value(QStringLiteral("disabledColor")), QColor("#c2c2c2"));
d->focusColor = readColorValue(theme.value(QStringLiteral("focusColor")), QColor("#45a7d7"));
d->frameColor = readColorValue(theme.value(QStringLiteral("frameColor")), QColor("#bdbebf"));
d->pressColor = readColorValue(theme.value(QStringLiteral("pressColor")), QColor("#33333333"));