From 912c9cc686139d2c936be2c830dba331dc5ae0b0 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Thu, 26 Nov 2015 17:39:25 +0300 Subject: [PATCH] Remove visual scale correction for tablets. --- graphics/defines.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/graphics/defines.cpp b/graphics/defines.cpp index 448408de84..34b08cc042 100644 --- a/graphics/defines.cpp +++ b/graphics/defines.cpp @@ -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.