Fixed issue 546. Settings for text rendering
This commit is contained in:
parent
f77b3869af
commit
5ccee8a404
1 changed files with 1 additions and 1 deletions
|
@ -416,7 +416,7 @@ public class OsmandRenderer {
|
||||||
private final static boolean findAllTextIntersections = true;
|
private final static boolean findAllTextIntersections = true;
|
||||||
|
|
||||||
private float getDensityValue(RenderingContext rc, float val) {
|
private float getDensityValue(RenderingContext rc, float val) {
|
||||||
if (rc.highResMode) {
|
if (rc.highResMode && dm.density > 1) {
|
||||||
return val * dm.density * rc.mapTextSize;
|
return val * dm.density * rc.mapTextSize;
|
||||||
} else {
|
} else {
|
||||||
return val * rc.mapTextSize;
|
return val * rc.mapTextSize;
|
||||||
|
|
Loading…
Reference in a new issue