Merge pull request #10038 from osmandapp/Category-names-poi
[bug] category names in user defined search converted to lowercase
This commit is contained in:
commit
ffbf3477ba
1 changed files with 1 additions and 1 deletions
|
@ -823,7 +823,7 @@ public class MapPoiTypes {
|
||||||
}
|
}
|
||||||
String name = keyName;
|
String name = keyName;
|
||||||
name = name.replace('_', ' ');
|
name = name.replace('_', ' ');
|
||||||
return Algorithms.capitalizeFirstLetterAndLowercase(name);
|
return Algorithms.capitalizeFirstLetter(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isRegisteredType(PoiCategory t) {
|
public boolean isRegisteredType(PoiCategory t) {
|
||||||
|
|
Loading…
Reference in a new issue