aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testapplications/elements/content/ColumnElement.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testapplications/elements/content/ColumnElement.qml')
-rw-r--r--tests/testapplications/elements/content/ColumnElement.qml7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/testapplications/elements/content/ColumnElement.qml b/tests/testapplications/elements/content/ColumnElement.qml
index 1b48db130e..bd0ed39afd 100644
--- a/tests/testapplications/elements/content/ColumnElement.qml
+++ b/tests/testapplications/elements/content/ColumnElement.qml
@@ -48,8 +48,11 @@ Item {
Column {
id: columnelement
- height: 250; width: 200; spacing: 5
- anchors.centerIn: parent
+ width: 200
+ spacing: 5
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.bottom: parent.bottom
+ anchors.bottomMargin: 15
Rectangle { id: gr; color: "green"; height: 50; width: parent.width; border.color: "gray"; border.width: 3; opacity: .9; radius: 5; clip: true }
Rectangle { id: re; color: "red"; height: 50; width: parent.width; border.color: "gray"; border.width: 3; opacity: .9; radius: 5; clip: true }
Rectangle {