display "Origin: Last map view" in search header when approriate
This commit is contained in:
parent
c0e8f915ab
commit
36423dfc73
1 changed files with 2 additions and 2 deletions
|
@ -177,7 +177,7 @@ public class SearchActivity extends SherlockFragmentActivity implements OsmAndLo
|
||||||
LatLon last = settings.getLastKnownMapLocation();
|
LatLon last = settings.getLastKnownMapLocation();
|
||||||
if(!Algorithms.objectEquals(reqSearchPoint, last)){
|
if(!Algorithms.objectEquals(reqSearchPoint, last)){
|
||||||
reqSearchPoint = last;
|
reqSearchPoint = last;
|
||||||
updateSearchPoint(last, getString(R.string.select_search_position), true);
|
updateSearchPoint(last, getString(R.string.select_search_position) + " " + getString(R.string.search_position_map_view), false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -239,7 +239,7 @@ public class SearchActivity extends SherlockFragmentActivity implements OsmAndLo
|
||||||
searchAroundCurrentLocation = false;
|
searchAroundCurrentLocation = false;
|
||||||
endSearchCurrentLocation();
|
endSearchCurrentLocation();
|
||||||
if (position == POSITION_LAST_MAP_VIEW) {
|
if (position == POSITION_LAST_MAP_VIEW) {
|
||||||
updateSearchPoint(settings.getLastKnownMapLocation(), getString(R.string.select_search_position) + " ", true);
|
updateSearchPoint(settings.getLastKnownMapLocation(), getString(R.string.select_search_position) + " " + getString(R.string.search_position_map_view), false);
|
||||||
} else if (position == POSITION_FAVORITES) {
|
} else if (position == POSITION_FAVORITES) {
|
||||||
Intent intent = new Intent(SearchActivity.this, FavouritesListActivity.class);
|
Intent intent = new Intent(SearchActivity.this, FavouritesListActivity.class);
|
||||||
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
|
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
|
||||||
|
|
Loading…
Reference in a new issue