Remove visual scale correction for tablets.

This commit is contained in:
Vladimir Byko-Ianko 2015-11-26 17:39:25 +03:00 committed by Vladimir Byko-Ianko
parent 0ab99475c7
commit 912c9cc686

View file

@ -82,10 +82,6 @@ namespace graphics
double visualScaleExact(int exactDensityDPI)
{
double const mdpiDensityDPI = 160.;
double const tabletFactor = 1.28;
// 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.