diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-10-28 03:23:00 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-10-28 03:23:00 (GMT) |
commit | 486eb1ccb91e239bf4440ec62c221e8af1ffddcc (patch) | |
tree | 4fdbe830fa699320a3550143a6162e9b0d58f59f /examples/declarative/parallax | |
parent | fc733f4573f1fe43e0cfe43734623d77f61a4614 (diff) | |
download | Qt-486eb1ccb91e239bf4440ec62c221e8af1ffddcc.zip Qt-486eb1ccb91e239bf4440ec62c221e8af1ffddcc.tar.gz Qt-486eb1ccb91e239bf4440ec62c221e8af1ffddcc.tar.bz2 |
Mode improvement to strictly enforced highlight range movement.
Diffstat (limited to 'examples/declarative/parallax')
-rw-r--r-- | examples/declarative/parallax/ParallaxView.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/declarative/parallax/ParallaxView.qml b/examples/declarative/parallax/ParallaxView.qml index bad9b85..50ab72c 100644 --- a/examples/declarative/parallax/ParallaxView.qml +++ b/examples/declarative/parallax/ParallaxView.qml @@ -25,7 +25,8 @@ Item { anchors.fill: parent model: VisualItemModel { id: visualModel } - highlight: Item { height: 1; width: 1} + highlight: Rectangle { height: 1; width: 1 } + highlightMoveSpeed: 2000 preferredHighlightBegin: 0 preferredHighlightEnd: 0 highlightRangeMode: "StrictlyEnforceRange" |