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:
authorrachytski <siarhei.rachytski@gmail.com>2013-02-19 20:08:17 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:51:02 +0300
commit2a94a88db90447ce7e6fc58d14a6e1d92791d611 (patch)
treec2f9fdf781670673010eaec4cacbc231d1f392f7 /android
parentc41ad096997877023e4dcd16db6430e2abafc1a5 (diff)
simple fix for ordering of OverlayElement's on screen.
Diffstat (limited to 'android')
-rw-r--r--android/jni/com/mapswithme/maps/Framework.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/jni/com/mapswithme/maps/Framework.cpp b/android/jni/com/mapswithme/maps/Framework.cpp
index d9a3717b13..8c2e39f46a 100644
--- a/android/jni/com/mapswithme/maps/Framework.cpp
+++ b/android/jni/com/mapswithme/maps/Framework.cpp
@@ -664,7 +664,7 @@ namespace android
BookmarkBalloon::Params bp;
bp.m_position = graphics::EPosAbove;
- bp.m_depth = graphics::maxDepth - 3;
+ bp.m_depth = graphics::maxDepth;
bp.m_pivot = m2::PointD(0, 0);
bp.m_imageMarginBottom = 10;
bp.m_imageMarginLeft = 0;