Fix
This commit is contained in:
parent
986e6c054c
commit
0dfa1e97a8
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue