Merge pull request #11115 from osmandapp/Wrong-POI-Multiselection
Wrong POI Multiselection after 1 selection
This commit is contained in:
commit
c352a04883
1 changed files with 2 additions and 1 deletions
|
@ -193,7 +193,8 @@ final class MapLayerMenuListener extends OnRowItemClick {
|
|||
adapter.notifyDataSetChanged();
|
||||
}
|
||||
};
|
||||
if (poiFiltersHelper.isShowingAnyPoi(wiki)) {
|
||||
boolean isMultichoose = poiFiltersHelper.getSelectedPoiFilters(wiki).size() > 1;
|
||||
if (isMultichoose) {
|
||||
mapActivity.getMapLayers().showMultichoicePoiFilterDialog(mapActivity.getMapView(),
|
||||
dismissListener);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue