summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorIan Walters <ian.walters@nokia.com>2009-04-23 05:42:13 (GMT)
committerIan Walters <ian.walters@nokia.com>2009-04-23 05:42:13 (GMT)
commit0af965285378ae51ac98dfade94f216761449459 (patch)
tree63284a53d9932b1202cad495c5e1bd2ebec208ae /examples
parent6f089aec4e6c396ce45dcab0bd58e2dda23adce1 (diff)
parent2595bf1dd0252027ebba409f8f81d906ab9c099c (diff)
downloadQt-0af965285378ae51ac98dfade94f216761449459.zip
Qt-0af965285378ae51ac98dfade94f216761449459.tar.gz
Qt-0af965285378ae51ac98dfade94f216761449459.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/dial/DialLibrary/Dial.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/declarative/dial/DialLibrary/Dial.qml b/examples/declarative/dial/DialLibrary/Dial.qml
index acff119..e1b9f18 100644
--- a/examples/declarative/dial/DialLibrary/Dial.qml
+++ b/examples/declarative/dial/DialLibrary/Dial.qml
@@ -1,12 +1,11 @@
<Item width="210" height="210">
<properties><Property name="value" type="real" value="0"/></properties>
<Image id="Background" src="background.svg"/>
- <Item x="102" y="98" rotation="-130">
+ <Item id="Needle" x="102" y="98" rotation="-130">
<rotation><Follow spring="1.4" damping=".15" source="{Math.min(Math.max(-130, value*2.2 - 130), 133)}"/></rotation>
<Image src="needle.svg" x="-102" y="-98"/>
</Item>
- <Item x="104" y="102" rotation="-130">
- <rotation><Follow spring="1.4" damping=".15" source="{Math.min(Math.max(-130, value*2.2 - 130), 133)}"/></rotation>
+ <Item x="104" y="102" rotation="{Needle.rotation}">
<Image src="needle_shadow.svg" x="-104" y="-102"/>
</Item>
<Image src="overlay.svg"/>