diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2010-11-17 23:00:11 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2010-11-17 23:00:11 (GMT) |
commit | 7727a0288c1ffb40ecff13e7bfc49ce99b984633 (patch) | |
tree | d94518fa3c56bdfc07f015e2acf779904dbe648d /tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml | |
parent | 569b076bb650c5082109d6406616c7536ac9f79f (diff) | |
parent | cca7c5b40751e2192ba2c7c7422557eeb5672a17 (diff) | |
download | Qt-7727a0288c1ffb40ecff13e7bfc49ce99b984633.zip Qt-7727a0288c1ffb40ecff13e7bfc49ce99b984633.tar.gz Qt-7727a0288c1ffb40ecff13e7bfc49ce99b984633.tar.bz2 |
Merge branch '4.7-upstream' into 4.7-water
Diffstat (limited to 'tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml')
-rw-r--r-- | tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml index 42cec3a..025aa80 100644 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml @@ -10,14 +10,14 @@ then a final full transition. */ Rectangle { - width: 800; - height: 480; + width: 400; + height: 240; color: "black"; Rectangle { id: gr color: "green" - width: 100; height: 100 + width: 50; height: 50 } MouseArea { @@ -27,21 +27,21 @@ Rectangle { Rectangle { id: np - x: 300 - width: 300; height: 300 + x: 150 + width: 150; height: 150 color: "yellow" clip: true Rectangle { color: "red" - x: 100; y: 100; height: 100; width: 100 + x: 50; y: 50; height: 50; width: 50 } } Rectangle { id: vp - x: 200; y: 200 - width: 100; height: 100 + x: 100; y: 100 + width: 50; height: 50 color: "blue" rotation: 45 scale: 2 @@ -53,7 +53,7 @@ Rectangle { ParentChange { target: gr parent: np - x: 100; y: 100; width: 200; + x: 50; y: 50; width: 100; } } |