diff options
Diffstat (limited to 'examples/declarative/flowview/flowview.qml')
-rw-r--r-- | examples/declarative/flowview/flowview.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/flowview/flowview.qml b/examples/declarative/flowview/flowview.qml index a3d0ac5..8d1bdf6 100644 --- a/examples/declarative/flowview/flowview.qml +++ b/examples/declarative/flowview/flowview.qml @@ -25,8 +25,8 @@ Rect { fromState: "" ; toState: "rotated" reversible: true SequentialAnimation { - NumberAnimation { filter: [TopBar, BottomBar]; properties: "x,y"; easing: "easeInOutQuad" } - NumberAnimation { filter: [LeftBar, RightBar]; properties: "x,y"; easing: "easeInOutQuad"} + NumberAnimation { targets: [TopBar, BottomBar]; properties: "x,y"; easing: "easeInOutQuad" } + NumberAnimation { targets: [LeftBar, RightBar]; properties: "x,y"; easing: "easeInOutQuad"} } } |