diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml b/tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml index c3dc7bf..4370a18 100644 --- a/tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml +++ b/tests/auto/declarative/qmlgraphicspositioners/data/propertychanges.qml @@ -2,14 +2,14 @@ import Qt 4.6 Grid { id: myGrid - + width: 270 height: 270 x: 3 y: 3 columns: 4 spacing: 3 - + add: columnTransition move: columnTransition @@ -24,7 +24,7 @@ Grid { objectName: "rowTransition" NumberAnimation { properties: "x,y"; - easing: "easeOutInCubic" + easing.type: "OutInCubic" } }, Transition { @@ -32,7 +32,7 @@ Grid { objectName: "columnTransition" NumberAnimation { properties: "x,y"; - easing: "easeOutInCubic" + easing.type: "OutInCubic" } } ] |