Fix lat/lat

This commit is contained in:
max-klaus 2020-05-03 13:48:09 +03:00
parent f4b5cf4398
commit 731376a572

View file

@ -1079,7 +1079,7 @@ public class MapContextMenu extends MenuTitleController implements StateChangedL
MapActivity mapActivity = getMapActivity();
if (mapActivity != null) {
LatLon latLon = getLatLon();
return mapActivity.getMapActions().getContextMenuItemClickListener(latLon.getLatitude(), latLon.getLatitude(), menuAdapter);
return mapActivity.getMapActions().getContextMenuItemClickListener(latLon.getLatitude(), latLon.getLongitude(), menuAdapter);
}
return null;
}