diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-08-19 03:50:55 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-08-19 03:50:55 (GMT) |
commit | dcb699f7cb55fb67b747e0bdf783d8c3d02d0255 (patch) | |
tree | c52552388fd3a1a1fe944deac1df4d4247f47a22 /doc | |
parent | 149b594706cb0d7cb68860bff5f9920cfcf8ac73 (diff) | |
parent | 2ca4d08efc444de985a9a7749e771dfcaa0e7683 (diff) | |
download | Qt-dcb699f7cb55fb67b747e0bdf783d8c3d02d0255.zip Qt-dcb699f7cb55fb67b747e0bdf783d8c3d02d0255.tar.gz Qt-dcb699f7cb55fb67b747e0bdf783d8c3d02d0255.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/snippets/declarative/drag.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/snippets/declarative/drag.qml b/doc/src/snippets/declarative/drag.qml index 2191b6f..8b1765b 100644 --- a/doc/src/snippets/declarative/drag.qml +++ b/doc/src/snippets/declarative/drag.qml @@ -9,9 +9,9 @@ Rect { MouseRegion { anchors.fill: parent drag.target: pic - drag.axis: "x" - drag.xmin: 0 - drag.xmax: blurtest.width-pic.width + drag.axis: "XAxis" + drag.minimumX: 0 + drag.maximumX: blurtest.width-pic.width } } } |