diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-18 07:59:37 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-18 07:59:37 (GMT) |
commit | 7862e3f5b6585dc17cc09a6a2a1c0f4004cee497 (patch) | |
tree | bc7b4564e62afeafe231734dafad91487d4b4903 | |
parent | 6371f5b7613c23ca606ac6b9c0a857479c7e89f0 (diff) | |
download | Qt-7862e3f5b6585dc17cc09a6a2a1c0f4004cee497.zip Qt-7862e3f5b6585dc17cc09a6a2a1c0f4004cee497.tar.gz Qt-7862e3f5b6585dc17cc09a6a2a1c0f4004cee497.tar.bz2 |
Allow a small grab area around the outside of the weblet
-rw-r--r-- | examples/declarative/flowview/flickr.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/declarative/flowview/flickr.qml b/examples/declarative/flowview/flickr.qml index a0a8009..fa8233b 100644 --- a/examples/declarative/flowview/flickr.qml +++ b/examples/declarative/flowview/flickr.qml @@ -26,10 +26,12 @@ Rect { ListView { clip: true orientation: "Horizontal" - anchors.fill: parent + width: parent.width + height: 86 + y: 17 model: FeedModel delegate: - Item { width: 90; height: 120 + Item { width: 90; height: 86 Rect { anchors.centeredIn: parent width: 86; height: 86; |