diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-03-05 03:07:37 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-03-05 03:07:37 (GMT) |
commit | 52fc88c05ede03f15328a69989c4acef9bf7c65b (patch) | |
tree | d63e4fb6c9500fb60d456673f9d8d6f048c9c236 /examples/declarative/velocity | |
parent | e85b39067914276fb42ce1a8ae35c45d2f688dae (diff) | |
download | Qt-52fc88c05ede03f15328a69989c4acef9bf7c65b.zip Qt-52fc88c05ede03f15328a69989c4acef9bf7c65b.tar.gz Qt-52fc88c05ede03f15328a69989c4acef9bf7c65b.tar.bz2 |
More declarative examples cleanup.
Diffstat (limited to 'examples/declarative/velocity')
-rw-r--r-- | examples/declarative/velocity/Day.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/velocity/Day.qml b/examples/declarative/velocity/Day.qml index 8a7364e..f4c24a5 100644 --- a/examples/declarative/velocity/Day.qml +++ b/examples/declarative/velocity/Day.qml @@ -52,7 +52,7 @@ Rectangle { id: mouse onClicked: { myText.focus = true } anchors.fill: parent - drag.target: stickyPage; drag.axis: "XandYAxis"; drag.minimumY: 0; drag.maximumY: 500 + drag.target: stickyPage; drag.axis: MouseArea.XandYAxis; drag.minimumY: 0; drag.maximumY: 500 drag.minimumX: 0; drag.maximumX: 400 } } |