diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-08-18 00:43:02 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-08-18 00:43:02 (GMT) |
commit | 8f5e72298fc4b8a5838bee1291a2cc422750b6b8 (patch) | |
tree | f7a780127d327c879cb642b8a23c44f081c71556 /examples/declarative/velocity | |
parent | 41335c52ef2844589030cddb4773c68cf38331af (diff) | |
download | Qt-8f5e72298fc4b8a5838bee1291a2cc422750b6b8.zip Qt-8f5e72298fc4b8a5838bee1291a2cc422750b6b8.tar.gz Qt-8f5e72298fc4b8a5838bee1291a2cc422750b6b8.tar.bz2 |
MouseRegion API changes following review.
Diffstat (limited to 'examples/declarative/velocity')
-rw-r--r-- | examples/declarative/velocity/Day.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/velocity/Day.qml b/examples/declarative/velocity/Day.qml index 59a31af..c959b0c 100644 --- a/examples/declarative/velocity/Day.qml +++ b/examples/declarative/velocity/Day.qml @@ -71,10 +71,10 @@ Rect { anchors.fill: parent drag.target: StickyPage drag.axis: "xy" - drag.ymin: 0 - drag.ymax: 500 - drag.xmin: 0 - drag.xmax: 400 + drag.minimumY: 0 + drag.maximumY: 500 + drag.minimumX: 0 + drag.maximumX: 400 } } } |