summaryrefslogtreecommitdiff
path: root/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@theqtcompany.com>2016-07-25 17:18:17 +0200
committerAlessandro Portale <alessandro.portale@qt.io>2016-07-25 16:14:25 +0000
commit8f36a772edfc27e32359cfe38d108f5069479477 (patch)
treea0bd06c1f1cd1201b58e1c0f1376252c9a19f053 /share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick
parent3be66f7427c734749f2024b21134b13a89b9b085 (diff)
downloadqt-creator-8f36a772edfc27e32359cfe38d108f5069479477.tar.gz
QmlDesigner: Use theme text color for TargetComboBox
Change-Id: I9c9b8286c226973f1c5008d807e4e3d452a76229 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml
index f9e1d204dd..f96b6304e5 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TargetComboBox.qml
@@ -31,6 +31,7 @@ import QtQuick.Controls 1.0 as Controls
Controls.ComboBox {
property string targetName: anchorBackend.topTarget
+ property color textColor: creatorTheme.PanelTextColorLight
id: targetComboBox
@@ -50,5 +51,6 @@ Controls.ComboBox {
model: anchorBackend.possibleTargetItems
style: CustomComboBoxStyle {
+ textColor: targetComboBox.textColor
}
}