Merge pull request #4979 from osmandapp/PaulsBranch

Fixed the dash removal for internal renderers
This commit is contained in:
vshcherb 2018-02-02 11:50:31 +01:00 committed by GitHub
commit 9e4335498c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -517,7 +517,7 @@ public class ConfigureMapMenu {
if (item.equals(selectedName)) {
selected = i;
}
visibleNamesList.add(item.replace('_', ' ').replace('-', ' '));
visibleNamesList.add(item);
i++;
}