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:
authorExMix <rahuba.youri@mapswithme.com>2014-09-19 20:15:23 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:28:31 +0300
commit24050a8d3f4aadd937ceaa078ecec773859b8828 (patch)
tree141477294da2072553c08dfa274aa53922ce2c34 /graphics
parent5f56c1ccf47c96e8c47f39e714a62e288359066e (diff)
[core] track rendering fix
Diffstat (limited to 'graphics')
-rw-r--r--graphics/depth_constants.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/depth_constants.hpp b/graphics/depth_constants.hpp
index 609fd957c6..d1adf27e0c 100644
--- a/graphics/depth_constants.hpp
+++ b/graphics/depth_constants.hpp
@@ -20,6 +20,7 @@ namespace graphics
static const int locationDepth = balloonBaseDepth - 10;
static const int poiDepth = locationDepth - 10;
static const int bookmarkDepth = poiDepth;
- static const int tracksDepth = bookmarkDepth - 10;
+ static const int tracksDepth = bookmarkDepth - balloonContentInc;
+ static const int tracksOutlineDepth = tracksDepth - 10;
static const int activePinDepth = tracksDepth - 10;
}