From e28724d16d92c69e66c16d3a673d31fd60dddc9f Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Mon, 25 Jul 2016 18:39:03 +0200 Subject: [PATCH] QmlDesigner: Theming fix for font size The color of the combobox was not defined by the theme. Change-Id: Iae9487f6c80e07c0c7b0155db79d9125c082c33f Reviewed-by: Alessandro Portale --- .../propertyEditorQmlSources/HelperWidgets/FontSection.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml index 911b93271c..56c5977080 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/FontSection.qml @@ -113,6 +113,7 @@ Section { Controls.ComboBox { id: sizeType model: ["pixels", "points"] + property color textColor: creatorTheme.PanelTextColorLight onCurrentIndexChanged: { if (sizeWidget.isSetup) return; -- GitLab