diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-03-10 00:38:04 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-03-10 00:38:04 (GMT) |
commit | 9c3293c00d2e1f72c76ce9f771fc3d74e43f8e72 (patch) | |
tree | 8b2a12fbf2cd035b7980cc91b1bce0c8a12f2127 /tools/qml | |
parent | 2b7de14b26de6f38b73b691c881f1c8f7be1a354 (diff) | |
parent | a6b3fdccab1a4d3ed941ba069dc632aa9c8dc755 (diff) | |
download | Qt-9c3293c00d2e1f72c76ce9f771fc3d74e43f8e72.zip Qt-9c3293c00d2e1f72c76ce9f771fc3d74e43f8e72.tar.gz Qt-9c3293c00d2e1f72c76ce9f771fc3d74e43f8e72.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'tools/qml')
-rw-r--r-- | tools/qml/content/Browser.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/qml/content/Browser.qml b/tools/qml/content/Browser.qml index 35120bc..62996ef 100644 --- a/tools/qml/content/Browser.qml +++ b/tools/qml/content/Browser.qml @@ -137,12 +137,12 @@ Rectangle { Transition { to: "current" SequentialAnimation { - NumberAnimation { matchProperties: "x"; duration: 250 } + NumberAnimation { properties: "x"; duration: 250 } } }, Transition { - NumberAnimation { matchProperties: "x"; duration: 250 } - NumberAnimation { matchProperties: "x"; duration: 250 } + NumberAnimation { properties: "x"; duration: 250 } + NumberAnimation { properties: "x"; duration: 250 } } ] Keys.onPressed: { root.keyPressed = true; } @@ -177,11 +177,11 @@ Rectangle { Transition { to: "current" SequentialAnimation { - NumberAnimation { matchProperties: "x"; duration: 250 } + NumberAnimation { properties: "x"; duration: 250 } } }, Transition { - NumberAnimation { matchProperties: "x"; duration: 250 } + NumberAnimation { properties: "x"; duration: 250 } } ] Keys.onPressed: { root.keyPressed = true; } |