forked from organicmaps/organicmaps
Merge pull request #1059 from bykoianko/master-next-try-to-increece-scale
Increasing visual scale for low dpi.
This commit is contained in:
commit
6b709c1bbd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue