aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testapplications/elements/content/RowElement.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testapplications/elements/content/RowElement.qml')
-rw-r--r--tests/testapplications/elements/content/RowElement.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/testapplications/elements/content/RowElement.qml b/tests/testapplications/elements/content/RowElement.qml
index 5e4805fb51..59876bfde8 100644
--- a/tests/testapplications/elements/content/RowElement.qml
+++ b/tests/testapplications/elements/content/RowElement.qml
@@ -49,7 +49,9 @@ Item {
Row {
id: rowelement
height: 50; width: 250; spacing: 5
- anchors.centerIn: parent
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.bottom: parent.bottom
+ anchors.bottomMargin: 15
Rectangle { id: gr; color: "green"; height: 50; width: 50; border.color: "gray"; border.width: 3; opacity: .9; radius: 5; clip: true }
Rectangle { id: re; color: "red"; height: 50; width: 50; border.color: "gray"; border.width: 3; opacity: .9; radius: 5; clip: true }
Rectangle {