[bug] category names in user defined search converted to lowercase

This commit is contained in:
androiddevkkotlin 2020-10-18 12:52:16 +03:00
parent 997c2d00b1
commit 63f06c3d39

View file

@ -823,7 +823,7 @@ public class MapPoiTypes {
}
String name = keyName;
name = name.replace('_', ' ');
return Algorithms.capitalizeFirstLetterAndLowercase(name);
return Algorithms.capitalizeFirstLetter(name);
}
public boolean isRegisteredType(PoiCategory t) {