aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testapplications/elements/content/RectangleElement.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testapplications/elements/content/RectangleElement.qml')
-rw-r--r--tests/testapplications/elements/content/RectangleElement.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/testapplications/elements/content/RectangleElement.qml b/tests/testapplications/elements/content/RectangleElement.qml
index 327aa49c5e..350bf75d8f 100644
--- a/tests/testapplications/elements/content/RectangleElement.qml
+++ b/tests/testapplications/elements/content/RectangleElement.qml
@@ -47,8 +47,10 @@ Item { id: rectangleelementtest
Rectangle {
id: rectangleelement
- height: 100; width: 100; color: "blue"; border.width: 2; border.color: "red"; border.aligned: false; smooth: true
- anchors.centerIn: parent
+ height: 100; width: 100; color: "blue"; border.width: 2; border.color: "red"; smooth: true
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.bottom: parent.bottom
+ anchors.bottomMargin: 15
Behavior on height { NumberAnimation { duration: 1000 } }
Behavior on width { NumberAnimation { duration: 1000 } }
Behavior on radius { NumberAnimation { duration: 1000 } }