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 + } } }