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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-17 12:10:34 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:28:05 +0300
commitc3f5c7217fb7389f529081703057ade2d335192b (patch)
treeee71b37e20cccfaed214e6b5d5b7a8309806aeea /drape_frontend/visual_params.cpp
parentd6a6fd0937ee06f90dbdfe979fd82552df21fb1b (diff)
Fixed text rendering
Diffstat (limited to 'drape_frontend/visual_params.cpp')
-rw-r--r--drape_frontend/visual_params.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drape_frontend/visual_params.cpp b/drape_frontend/visual_params.cpp
index ff0f540d5c..f043ed0a15 100644
--- a/drape_frontend/visual_params.cpp
+++ b/drape_frontend/visual_params.cpp
@@ -42,9 +42,9 @@ void VisualParams::Init(double vs, uint32_t tileSize, vector<uint32_t> const & a
// Here we set up glyphs rendering parameters separately for high-res and low-res screens.
if (vs <= 1.0)
- g_VizParams.m_glyphVisualParams = { 0.44, 0.6, 0.615, 0.95, 0.44, 0.6 };
+ g_VizParams.m_glyphVisualParams = { 0.48f, 0.08f, 0.05f, 0.01f };
else
- g_VizParams.m_glyphVisualParams = { 0.41, 0.575, 0.58, 0.95, 0.41, 0.575 };
+ g_VizParams.m_glyphVisualParams = { 0.5f, 0.05f, 0.05f, 0.01f };
RISE_INITED;
}