diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-04-22 03:35:10 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-04-22 03:35:10 (GMT) |
commit | 47862497693ffac597557f940535909df549d897 (patch) | |
tree | 955c2c9d0f014e79ec6f3fe801f2e2baa4b4bfa1 /tests/auto/declarative/qdeclarativeflickable/data | |
parent | fb94bfda66ac8767c96cb521a1f77c6b8be5bb95 (diff) | |
download | Qt-47862497693ffac597557f940535909df549d897.zip Qt-47862497693ffac597557f940535909df549d897.tar.gz Qt-47862497693ffac597557f940535909df549d897.tar.bz2 |
Replace Flickable overshoot property with boundsBehavior
Task-number: QTBUG-9993
Diffstat (limited to 'tests/auto/declarative/qdeclarativeflickable/data')
-rw-r--r-- | tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml b/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml index ff742f0..aa156ed 100644 --- a/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml +++ b/tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml @@ -3,7 +3,7 @@ import Qt 4.7 Flickable { width: 100; height: 100 contentWidth: column.width; contentHeight: column.height - pressDelay: 200; overShoot: false; interactive: false + pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false maximumFlickVelocity: 2000 Column { |