diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-07-31 12:50:04 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-31 12:57:07 -0700 |
commit | 855dd0d1aa4d29ce6c718e9536b3b02d23d4b4b0 (patch) | |
tree | 5bd26200eef1847821962214ca6a976171269626 /mobile-widgets | |
parent | 9a2759fc1fba63d2caf6f69d6ea9850051ea0b54 (diff) | |
download | subsurface-855dd0d1aa4d29ce6c718e9536b3b02d23d4b4b0.tar.gz |
QML UI: stop showing location labels earlier
We are stepping by 2 - so 11 makes it clear that at 12 the labels are
shown, but at 10 they are not.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/MapWidget.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/MapWidget.qml b/mobile-widgets/qml/MapWidget.qml index 2d5a6ddc7..9b96f78ad 100644 --- a/mobile-widgets/qml/MapWidget.qml +++ b/mobile-widgets/qml/MapWidget.qml @@ -31,7 +31,7 @@ Item { readonly property var defaultCenter: QtPositioning.coordinate(0, 0) readonly property real defaultZoomIn: 12.0 readonly property real defaultZoomOut: 1.0 - readonly property real textVisibleZoom: 8.0 + readonly property real textVisibleZoom: 11.0 readonly property real zoomStep: 2.0 property var newCenter: defaultCenter property real newZoom: 1.0 |