Fixed issue 875
This commit is contained in:
parent
eb5ec9d9c8
commit
ab0bb97ec7
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue