Merge pull request #912 from bykoianko/bigger-fonts-on-tablets-before-new-styles2

Make fonts bigger for tablets.
This commit is contained in:
Konstantin Shalnev 2015-12-10 12:43:23 +03:00
commit 1c21b32533

View file

@ -2,9 +2,14 @@
namespace dp
{
inline double VisualScale(double exactDensityDPI) noexcept
inline double VisualScale(double exactDensityDPI)
{
double constexpr kMdpiDensityDPI = 160.;
double const tabletFactor = 1.2;
// In case of tablets and iPads increased DPI is used to make visual scale bigger.
if (GetPlatform().IsTablet())
exactDensityDPI *= tabletFactor;
// 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);