diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-06-16 07:25:13 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-06-16 07:25:13 (GMT) |
commit | 1937adaab5861ced44813c6a4b0bff1c3750ecd3 (patch) | |
tree | e30aa1bec8dace42b5c70ec3d21fc1725886c98f /demos | |
parent | bb8142436bacf5a4fa31880b58a8b3b6bc7b4d5b (diff) | |
download | Qt-1937adaab5861ced44813c6a4b0bff1c3750ecd3.zip Qt-1937adaab5861ced44813c6a4b0bff1c3750ecd3.tar.gz Qt-1937adaab5861ced44813c6a4b0bff1c3750ecd3.tar.bz2 |
Move knowledge of QGraphicsObject out of qml engine
Diffstat (limited to 'demos')
-rw-r--r-- | demos/declarative/snake/content/Link.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/demos/declarative/snake/content/Link.qml b/demos/declarative/snake/content/Link.qml index 9aa6006..f4d7165 100644 --- a/demos/declarative/snake/content/Link.qml +++ b/demos/declarative/snake/content/Link.qml @@ -73,12 +73,14 @@ Item { id:link } } + /* transform: Rotation { id: actualImageRotation origin.x: width/2; origin.y: height/2; angle: rotation * 90 Behavior on angle { NumberAnimation { duration: spawned ? 200 : 0} } } + */ } Image { |