diff --git a/OsmAnd/src/net/osmand/plus/views/mapwidgets/MapInfoWidgetsFactory.java b/OsmAnd/src/net/osmand/plus/views/mapwidgets/MapInfoWidgetsFactory.java index e4700131e8..669b7ffb31 100644 --- a/OsmAnd/src/net/osmand/plus/views/mapwidgets/MapInfoWidgetsFactory.java +++ b/OsmAnd/src/net/osmand/plus/views/mapwidgets/MapInfoWidgetsFactory.java @@ -331,8 +331,9 @@ public class MapInfoWidgetsFactory { } if (text == null) { text = ""; + } else { + text = "\u2316+ " + text; } - text = "\u2316" + " " + text; } if (map.isQuickSearchDialogActive()) { updateVisibility(false); @@ -364,7 +365,7 @@ public class MapInfoWidgetsFactory { addressText.setCompoundDrawables(null, null, null, null); } } - if (!text.equals(addressText.getText().toString()) && !text.equals("\u2316" + " " + addressText.getText().toString())) { + if (!text.equals(addressText.getText().toString()) && !text.equals("\u2316+ " + addressText.getText().toString())) { if (!text.equals("")) { topBar.setContentDescription(text); } else {