summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2010-03-01 03:04:57 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2010-03-01 03:04:57 (GMT)
commit6174f91cc2a8a53c14d3b2f4eccc62f9170699c8 (patch)
tree08894dba6347764083f4fa9d73baed9486e2a986 /demos
parent1dca379031381eb7bff91970aec8056f1b7f2efb (diff)
parent47201b118179d6585d8eac8ab27f756010024a23 (diff)
downloadQt-6174f91cc2a8a53c14d3b2f4eccc62f9170699c8.zip
Qt-6174f91cc2a8a53c14d3b2f4eccc62f9170699c8.tar.gz
Qt-6174f91cc2a8a53c14d3b2f4eccc62f9170699c8.tar.bz2
Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/qt-qml: Add mention of highlightRangeMode in snapMode docs. Fix position of image in detail view.
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/flickr/common/ImageDetails.qml4
1 files changed, 1 insertions, 3 deletions
diff --git a/demos/declarative/flickr/common/ImageDetails.qml b/demos/declarative/flickr/common/ImageDetails.qml
index f91b365..9604f10 100644
--- a/demos/declarative/flickr/common/ImageDetails.qml
+++ b/demos/declarative/flickr/common/ImageDetails.qml
@@ -93,9 +93,7 @@ Flipable {
Image {
id: bigImage; source: container.photoUrl; scale: slider.value
- // Center image if it is smaller than the flickable area.
- x: imageContainer.width > width*scale ? (imageContainer.width - width*scale) / 2 : 0
- y: imageContainer.height > height*scale ? (imageContainer.height - height*scale) / 2 : 0
+ anchors.centerIn: parent;
smooth: !flick.moving
onStatusChanged : {
// Default scale shows the entire image.