From 92a085d27395cde07d2055fa5cb785858cfbcb78 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Wed, 12 Oct 2016 11:42:26 +0200 Subject: [PATCH] QmlDesigner: Adding support for the render type of text Change-Id: I0690f8ec77cc5c76255d4a49cd91bb3c23e12728 Reviewed-by: Leena Miettinen Reviewed-by: Tim Jenssen --- .../HelperWidgets/StandardTextSection.qml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml index e710af40c18..f298d90134c 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/HelperWidgets/StandardTextSection.qml @@ -105,5 +105,16 @@ Section { backendValue: backendValues.textFormat Layout.fillWidth: true } + + Label { + text: qsTr("Render type") + toolTip: qsTr("Override the default rendering type for this item.") + } + ComboBox { + scope: "Text" + model: ["QtRendering", "NativeRendering"] + backendValue: backendValues.renderType + Layout.fillWidth: true + } } }