diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2010-03-09 13:58:00 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2010-03-09 13:58:00 (GMT) |
commit | 4029da6fae201512b15f1e088bf720b0c37e1437 (patch) | |
tree | 81e1b9033eea168b78b4b55945cccbbb136c1c65 /tools/qml | |
parent | 83b057467054004fe0c1f14638f455cbf447d2b0 (diff) | |
download | Qt-4029da6fae201512b15f1e088bf720b0c37e1437.zip Qt-4029da6fae201512b15f1e088bf720b0c37e1437.tar.gz Qt-4029da6fae201512b15f1e088bf720b0c37e1437.tar.bz2 |
update Browser.qml to run again
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; } |