Fixed issue 875

This commit is contained in:
Pavol Zibrita 2012-04-13 10:00:36 +02:00
parent eb5ec9d9c8
commit ab0bb97ec7

View file

@ -138,7 +138,7 @@ public class EditingPOIActivity implements DialogProvider {
public void run() {
AccessibleToast.makeText(ctx, ctx.getResources().getString(R.string.poi_remove_success), Toast.LENGTH_LONG).show();
if(ctx.getMapView() != null){
ctx.getMapView().refreshMap();
ctx.getMapView().refreshMap(true);
}
}
});
@ -283,7 +283,7 @@ public class EditingPOIActivity implements DialogProvider {
AccessibleToast.makeText(ctx, MessageFormat.format(ctx.getResources().getString(R.string.poi_action_succeded_template), msg),
Toast.LENGTH_LONG).show();
if (ctx.getMapView() != null) {
ctx.getMapView().refreshMap();
ctx.getMapView().refreshMap(true);
}
ctx.dismissDialog(dialogID);
}