diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml index bc471cc8ce0d3fa4a3c0257a5454c6031f3f0ddc..e3a5064f22b67d10380651919b839052d2399a9f 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextEditSpecifics.qml @@ -35,6 +35,11 @@ Column { anchors.left: parent.left anchors.right: parent.right + StandardTextSection { + showIsWrapping: true + useLineEdit: true + } + Section { anchors.left: parent.left anchors.right: parent.right @@ -60,12 +65,25 @@ Column { } } - StandardTextSection { - showIsWrapping: true - useLineEdit: true - } + FontSection { + showStyle: false + } - FontSection { - showStyle: false - } + Section { + caption: qsTr("Text Input") + SectionLayout { + Label { + text: qsTr("Format") + } + ComboBox { + model: ["PlainText", "RichText", "AutoText"] + backendValue: backendValues.textFormat + Layout.fillWidth: true + } + } + } + + TextInputSection { + + } }