Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
29aab3a3a9
1 changed files with 2 additions and 2 deletions
|
@ -48,10 +48,10 @@ public class PoiLegacyFilter {
|
||||||
public PoiLegacyFilter(PoiCategory type, OsmandApplication application){
|
public PoiLegacyFilter(PoiCategory type, OsmandApplication application){
|
||||||
this.app = application;
|
this.app = application;
|
||||||
isStandardFilter = true;
|
isStandardFilter = true;
|
||||||
filterId = STD_PREFIX + type;
|
filterId = STD_PREFIX + (type == null? null: type.getName());
|
||||||
poiTypes = application.getPoiTypes();
|
poiTypes = application.getPoiTypes();
|
||||||
name = type == null ? application.getString(R.string.poi_filter_closest_poi) : type.getTranslation(); //$NON-NLS-1$
|
name = type == null ? application.getString(R.string.poi_filter_closest_poi) : type.getTranslation(); //$NON-NLS-1$
|
||||||
if(type == null){
|
if (type == null) {
|
||||||
initSearchAll();
|
initSearchAll();
|
||||||
} else {
|
} else {
|
||||||
acceptedTypes.put(type, null);
|
acceptedTypes.put(type, null);
|
||||||
|
|
Loading…
Reference in a new issue