This commit is contained in:
Alexey Kulish 2015-11-04 10:55:09 +03:00
parent 986e6c054c
commit 0dfa1e97a8

View file

@ -108,7 +108,7 @@ public class EditPOIMenuBuilder extends MenuBuilder {
OpenstreetmapPoint point = (OpenstreetmapPoint) osmPoint; OpenstreetmapPoint point = (OpenstreetmapPoint) osmPoint;
for (Map.Entry<String, String> e : point.getEntity().getTags().entrySet()) { for (Map.Entry<String, String> e : point.getEntity().getTags().entrySet()) {
String text = e.getKey() + ": " + e.getValue(); String text = e.getKey() + "=" + e.getValue();
buildRow(view, R.drawable.ic_action_info_dark, text); buildRow(view, R.drawable.ic_action_info_dark, text);
} }
} }