From a0e2de052e7d903f464ec552267b4530272219fa Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Fri, 18 Dec 2015 17:46:39 +0300 Subject: [PATCH] Increasing visual scale for low dpi. --- drape/visual_scale.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drape/visual_scale.hpp b/drape/visual_scale.hpp index 76d36986aa..beb8f3e72e 100644 --- a/drape/visual_scale.hpp +++ b/drape/visual_scale.hpp @@ -12,6 +12,6 @@ inline double VisualScale(double exactDensityDPI) // For some old devices (for example iPad 2) the density could be less than 160 DPI. // Returns one in that case to keep readable text on the map. - return max(1., exactDensityDPI / kMdpiDensityDPI); + return max(1.35, exactDensityDPI / kMdpiDensityDPI); } } // namespace dp