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-27 10:43:15 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:28:56 +0300
commit78bf5cec4076d17ad7bb5366471c251925d64c07 (patch)
tree952a0b570ef1304ce4fd7c08563f8b1baa6805f5 /graphics
parent0dfe188b54260cb720fb29205a6b03875cfebe0c (diff)
new core assets
Diffstat (limited to 'graphics')
-rw-r--r--graphics/depth_constants.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/depth_constants.hpp b/graphics/depth_constants.hpp
index cad5fc8320..806664d43c 100644
--- a/graphics/depth_constants.hpp
+++ b/graphics/depth_constants.hpp
@@ -20,9 +20,9 @@ namespace graphics
static const int locationDepth = balloonBaseDepth - 10;
static const int poiDepth = locationDepth - 10;
static const int bookmarkDepth = poiDepth;
- static const int routingFinishDepth = bookmarkDepth;
- static const int routingSymbolsDepth = bookmarkDepth - 10;
+ static const int routingFinishDepth = bookmarkDepth - balloonContentInc;
+ static const int routingSymbolsDepth = routingFinishDepth;
static const int tracksDepth = routingSymbolsDepth - balloonContentInc;
static const int tracksOutlineDepth = tracksDepth - 10;
- static const int activePinDepth = tracksDepth - 10;
+ static const int activePinDepth = tracksOutlineDepth - 10;
}