forked from organicmaps/organicmaps
fix depth layout of gui elements
This commit is contained in:
parent
48c58c3842
commit
a599876510
1 changed files with 6 additions and 6 deletions
|
@ -7,17 +7,17 @@ namespace graphics
|
|||
static const int debugDepth = maxDepth;
|
||||
static const int benchmarkDepth = maxDepth;
|
||||
|
||||
static const int compassDepth = maxDepth;
|
||||
static const int rulerDepth = maxDepth;
|
||||
static const int countryStatusDepth = maxDepth - 10;
|
||||
|
||||
/// @todo 100 is a temporary solution fo iOS.
|
||||
/// Need to review logic of gui elements, glyphs and symbols caching
|
||||
/// (display_list_cache.dpp). Depth is hardcoded there.
|
||||
|
||||
static const int balloonContentInc = 100;
|
||||
static const int balloonBaseDepth = maxDepth - balloonContentInc;
|
||||
static const int balloonBaseDepth = countryStatusDepth - (balloonContentInc + 10);
|
||||
|
||||
static const int compassDepth = balloonBaseDepth - 10;
|
||||
static const int rulerDepth = compassDepth;
|
||||
static const int locationDepth = rulerDepth - 10;
|
||||
static const int locationDepth = balloonBaseDepth - 10;
|
||||
static const int poiAndBookmarkDepth = locationDepth - 10;
|
||||
static const int tracksDepth = poiAndBookmarkDepth - 10;
|
||||
static const int countryStatusDepth = poiAndBookmarkDepth - 10;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue