aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testapplications/elements/content/FlipableElement.qml
diff options
context:
space:
mode:
authorDamian Jansen <damian.jansen@nokia.com>2012-05-15 14:32:07 +1000
committerQt by Nokia <qt-info@nokia.com>2012-05-30 06:01:49 +0200
commitf7e3a33cb80f3cc289aea9e59f53111d730b5927 (patch)
tree2bca0d946860b27ba51648692cf21673f7a9c2bb /tests/testapplications/elements/content/FlipableElement.qml
parent486ec88d2b88378768487a12dcbf6493c33d5699 (diff)
Clean up visuals of elements test
Elements were not being displayed correctly on small screens, i.e. devices. Should anchor these to the bottom, rather than center. Also fix layout element child positions, as opacity is not used to determine placement - use visible property instead. Change-Id: I9fff7e64f3f03f1a4d60a242fb8f95629da6f7c9 Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
Diffstat (limited to 'tests/testapplications/elements/content/FlipableElement.qml')
-rw-r--r--tests/testapplications/elements/content/FlipableElement.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/testapplications/elements/content/FlipableElement.qml b/tests/testapplications/elements/content/FlipableElement.qml
index cb2b11c532..77187bd3a2 100644
--- a/tests/testapplications/elements/content/FlipableElement.qml
+++ b/tests/testapplications/elements/content/FlipableElement.qml
@@ -49,7 +49,9 @@ Item {
Flipable {
id: flipableelement
height: 250; width: 250
- anchors.centerIn: parent
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.bottom: parent.bottom
+ anchors.bottomMargin: 15
front: Rectangle { color: "green"; anchors.fill: parent; border.color: "gray"; border.width: 3; opacity: .9; radius: 20; clip: true }
back: Rectangle { color: "red"; anchors.fill: parent; border.color: "gray"; border.width: 3; opacity: .9; radius: 20; clip: true }
transform: Rotation {