diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-08-13 05:36:04 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-08-13 05:36:04 (GMT) |
commit | 5731119be208ffb7d2967746cea2df54424b7885 (patch) | |
tree | c70f8095c9af5f93b796d8ef87312a0dc6d85313 /examples/declarative/snow | |
parent | efe66141d535d1741f302efff9248db726cd66b1 (diff) | |
download | Qt-5731119be208ffb7d2967746cea2df54424b7885.zip Qt-5731119be208ffb7d2967746cea2df54424b7885.tar.gz Qt-5731119be208ffb7d2967746cea2df54424b7885.tar.bz2 |
QGraphicsRotation3D has been merged into QGraphicsRotation.
Diffstat (limited to 'examples/declarative/snow')
-rw-r--r-- | examples/declarative/snow/snow.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/snow/snow.qml b/examples/declarative/snow/snow.qml index 5dd0006..f63f090 100644 --- a/examples/declarative/snow/snow.qml +++ b/examples/declarative/snow/snow.qml @@ -41,8 +41,8 @@ Rect { y: Follow { source: -(selectedY + imageHeight / 2); velocity: 500 } } - transform: Rotation3D { - axis.y: 1 + transform: Rotation { + axis.y: 1; axis.z: 0 angle: MyLayout.deform * 100 } } |