diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-03-05 01:18:53 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-03-05 01:18:53 (GMT) |
commit | 24a94c1b88fc72243c53e1bf51b87dc0d0be41b7 (patch) | |
tree | 01d20c577044a351950814a6fda873d489d78bf2 /examples/declarative/velocity | |
parent | 38ff49e632da2bd61ac5fb59f57f62208c2687fd (diff) | |
download | Qt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.zip Qt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.tar.gz Qt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.tar.bz2 |
declarative examples cleanup
Diffstat (limited to 'examples/declarative/velocity')
-rw-r--r-- | examples/declarative/velocity/Day.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/velocity/Day.qml b/examples/declarative/velocity/Day.qml index 7424f60..8a7364e 100644 --- a/examples/declarative/velocity/Day.qml +++ b/examples/declarative/velocity/Day.qml @@ -33,7 +33,7 @@ Rectangle { id: sticky scale: 0.5 Image { - id: stickyImage; source: "sticky.png" + id: stickyImage; source: "sticky.png"; transformOrigin: Item.TopLeft smooth: true; y: -20; x: 8 + -width * 0.6 / 2; scale: 0.6 } @@ -59,7 +59,7 @@ Rectangle { } Image { - source: "tack.png" + source: "tack.png"; transformOrigin: Item.TopLeft x: -width / 2; y: -height * 0.7 / 2; scale: 0.7 } |