aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
index 37be5e5770..284849a415 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GridSpecifics.qml
@@ -95,7 +95,32 @@ Column {
Layout.fillWidth: true
scope: "Qt"
}
+ }
+ Label {
+ text: qsTr("Horizontal item alignment")
+ }
+
+ SecondColumnLayout {
+ ComboBox {
+ model: ["AlignLeft", "AlignRight" ,"AlignHCenter"]
+ backendValue: backendValues.horizontalItemAlignment
+ Layout.fillWidth: true
+ scope: "Grid"
+ }
+ }
+
+ Label {
+ text: qsTr("Vertical item alignment")
+ }
+
+ SecondColumnLayout {
+ ComboBox {
+ model: ["AlignTop", "AlignBottom" ,"AlignVCenter"]
+ backendValue: backendValues.verticalItemAlignment
+ Layout.fillWidth: true
+ scope: "Grid"
+ }
}
Label {