Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
3f2d8d97d3
1 changed files with 5 additions and 1 deletions
|
@ -42,7 +42,11 @@ public abstract class AbstractPoiType {
|
|||
}
|
||||
|
||||
public String getIconKeyName() {
|
||||
return getKeyName().replace(':', '_');
|
||||
String kn = getKeyName();
|
||||
if(kn.startsWith("osmand_")) {
|
||||
kn = kn.substring("osmand_".length());
|
||||
}
|
||||
return kn.replace(':', '_');
|
||||
}
|
||||
|
||||
public void setTopVisible(boolean topVisible) {
|
||||
|
|
Loading…
Reference in a new issue