QmlDesigner: Adding support for the render type of text

Change-Id: I0690f8ec77cc5c76255d4a49cd91bb3c23e12728
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Thomas Hartmann
2016-10-12 11:42:26 +02:00
committed by Tim Jenssen
parent da202bff82
commit 92a085d273

View File

@@ -105,5 +105,16 @@ Section {
backendValue: backendValues.textFormat backendValue: backendValues.textFormat
Layout.fillWidth: true 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
}
} }
} }