Prepare for 0.8.3 release

This commit is contained in:
Victor Shcherb 2012-09-20 01:18:53 +02:00
parent 18b1cf4e45
commit 22f09f06e2

View file

@ -355,12 +355,12 @@ public class RouteInfoControls {
@Override
public void onClick(View v) {
onClick(view);
click(view);
}
});
}
protected void onClick(final OsmandMapTileView view) {
protected void click(final OsmandMapTileView view) {
AnimateDraggingMapThread thread = view.getAnimatedDraggingThread();
LatLon pointToNavigate = getPointToNavigate();
if (pointToNavigate != null) {
@ -430,11 +430,11 @@ public class RouteInfoControls {
.getDrawable(R.drawable.info_intermediate), view) {
@Override
protected void onClick(OsmandMapTileView view) {
protected void click(OsmandMapTileView view) {
if(map.getIntermediatePoints().size() > 1) {
map.getMapActions().openIntermediatePointsDialog();
} else {
super.onClick(view);
super.click(view);
}
}