[bug] category names in user defined search converted to lowercase
This commit is contained in:
parent
997c2d00b1
commit
63f06c3d39
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue