Skip to content
Snippets Groups Projects
Commit e21d1137 authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlDesigner.PropertyEditor: polishing TextEditSpecfics


* adding TextInputSection
* moving StandardTextSection to the top
* adding ComboBox for Format

Change-Id: I730bee9c55e54f62c93a8515af0f56cdafed78bf
Reviewed-by: default avatarThomas Hartmann <Thomas.Hartmann@digia.com>
parent c22e28e0
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment