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