summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2010-03-10 15:41:22 (GMT)
committerThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>2010-03-10 15:54:53 (GMT)
commit6b536331ccc3ee120396ca61f88da43223a767c5 (patch)
tree7652f733940701beea984fae456760271771e855 /tools
parent0c208692504ae3a572baf9fe058d4b9ee9b01e5d (diff)
downloadQt-6b536331ccc3ee120396ca61f88da43223a767c5.zip
Qt-6b536331ccc3ee120396ca61f88da43223a767c5.tar.gz
Qt-6b536331ccc3ee120396ca61f88da43223a767c5.tar.bz2
Fixed the QML browser built into the QML viewer
Was still using 'matchProperties' instead of just 'properties'.
Diffstat (limited to 'tools')
-rw-r--r--tools/qml/content/Browser.qml10
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; }