Fix poi filter

This commit is contained in:
Victor Shcherb 2015-08-31 00:26:31 +02:00
parent 27385b6664
commit 88aa84ecae

View file

@ -285,6 +285,9 @@ public class SearchPoiFilterFragment extends OsmAndListFragment implements Searc
icon.setImageDrawable(null);
}
name = st.getTranslation();
if(st.isAdditional()) {
name += " (" + ((PoiType) st).getParentType().getTranslation() + ")";
}
}
label.setText(name);
return (row);