summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/easing/easing.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/visual/easing/easing.qml')
-rw-r--r--tests/auto/declarative/visual/easing/easing.qml10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/auto/declarative/visual/easing/easing.qml b/tests/auto/declarative/visual/easing/easing.qml
index 4a0ed14..14622c9 100644
--- a/tests/auto/declarative/visual/easing/easing.qml
+++ b/tests/auto/declarative/visual/easing/easing.qml
@@ -148,19 +148,17 @@ Rect {
State {
name: "from"
when: !mouse.pressed
- SetProperty {
+ SetProperties {
target: text
- property: "x"
- value: 0
+ x: 0
}
},
State {
name: "to"
when: mouse.pressed
- SetProperty {
+ SetProperties {
target: text
- property: "x"
- value: item.width-100
+ x: item.width-100
}
}
]