summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@digia.com>2013-10-23 13:37:15 +0200
committerThomas Hartmann <Thomas.Hartmann@digia.com>2013-10-23 13:40:33 +0200
commitc76e4e42340573da24401ba5f7afdabfcea86725 (patch)
treedbaa1e0a1216fac0c0350cb43d4fc8a76c2735bb
parentb80b806ac97d25bbdaa967f2e4299503be00be6c (diff)
downloadqt-creator-c76e4e42340573da24401ba5f7afdabfcea86725.tar.gz
QmlDesigner.PropertyEditor: polish TextInputSpecifics
* adding TextInputSection * moving StandardTextSection to the front Change-Id: Ic6eb7aecefa63c1e7c6f003b5b8ae900291aaee1 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml14
1 files changed, 9 insertions, 5 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml
index e05a850c98..e6b320258a 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/TextInputSpecifics.qml
@@ -35,6 +35,11 @@ Column {
anchors.left: parent.left
anchors.right: parent.right
+ StandardTextSection {
+ useLineEdit: false
+ showIsWrapping: false
+ }
+
Section {
anchors.left: parent.left
anchors.right: parent.right
@@ -60,12 +65,11 @@ Column {
}
}
- StandardTextSection {
- useLineEdit: false
- showIsWrapping: false
- }
-
FontSection {
showStyle: false
}
+
+ TextInputSection {
+
+ }
}