Merge pull request #1059 from bykoianko/master-next-try-to-increece-scale

Increasing visual scale for low dpi.
This commit is contained in:
Dmitry Yunitsky 2015-12-18 18:35:22 +03:00
commit 6b709c1bbd

View file

@ -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