Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'indexer/data_source_helpers.cpp')
-rw-r--r--indexer/data_source_helpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/data_source_helpers.cpp b/indexer/data_source_helpers.cpp
index 65945e41d3..e805280f89 100644
--- a/indexer/data_source_helpers.cpp
+++ b/indexer/data_source_helpers.cpp
@@ -33,7 +33,7 @@ void ForEachFeatureAtPoint(DataSource const & dataSource, function<void(FeatureT
auto limitRect = ft.GetLimitRect(kScale);
// Be a little more tolerant. When used by editor mercator is given
// with some error, so we must extend limit rect a bit.
- limitRect.Inflate(kCellIdToPointEps, kCellIdToPointEps);
+ limitRect.Inflate(kMwmPointAccuracy, kMwmPointAccuracy);
if (limitRect.IsPointInside(mercator) &&
feature::GetMinDistanceMeters(ft, mercator) <= toleranceInMeters)
{