diff options
author | Paolo Angelelli <paolo.angelelli@theqtcompany.com> | 2016-08-16 16:17:44 +0200 |
---|---|---|
committer | Paolo Angelelli <paolo.angelelli@theqtcompany.com> | 2016-09-05 13:13:28 +0000 |
commit | c78af3434956645b68dd13ab6b8a945239c5782c (patch) | |
tree | 568038f07eb9dcf904f2e0684af252fb17f77dc8 /examples | |
parent | 05d2e10a98475b35d54942cd53e3aecd621ac073 (diff) | |
download | qtlocation-c78af3434956645b68dd13ab6b8a945239c5782c.tar.gz |
Fix for wrong map center at startup in mapviewer example
This patches fixes an incorrect behavior (that is also a regression)
introduced as a side effect of the no gray bands patch in the map
viewer example
Task-number: QTBUG-55085
Change-Id: I2078ba72e1d1588357bb2002d0c8e38b2f59253c
Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/location/mapviewer/map/MapComponent.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/location/mapviewer/map/MapComponent.qml b/examples/location/mapviewer/map/MapComponent.qml index d2d526d1..008a4a00 100644 --- a/examples/location/mapviewer/map/MapComponent.qml +++ b/examples/location/mapviewer/map/MapComponent.qml @@ -377,7 +377,8 @@ Map { orientation : Qt.Vertical value: map.zoomLevel onValueChanged: { - map.zoomLevel = value + if (value >= 0) + map.zoomLevel = value } } |