forked from organicmaps/organicmaps-tmp
Merge pull request #912 from bykoianko/bigger-fonts-on-tablets-before-new-styles2
Make fonts bigger for tablets.
This commit is contained in:
commit
1c21b32533
1 changed files with 6 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue