Fix interpolation address look up
This commit is contained in:
parent
7235f8f4c9
commit
c3506db69d
1 changed files with 8 additions and 0 deletions
|
@ -87,6 +87,14 @@ public class SearchBuildingByNameActivity extends SearchByNameAbstractActivity<B
|
||||||
return obj.getName(region.useEnglishNames());
|
return obj.getName(region.useEnglishNames());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getShortText(Building obj) {
|
||||||
|
if(obj.getInterpolationInterval() > 0 || obj.getInterpolationType() != null){
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
return super.getShortText(obj);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void itemSelected(Building obj) {
|
public void itemSelected(Building obj) {
|
||||||
|
|
Loading…
Reference in a new issue