Merge pull request #9652 from androiddevkotlin/сontext_menu_issue_Parking_point

Fix #9582
This commit is contained in:
Vitaliy 2020-08-17 17:37:07 +03:00 committed by GitHub
commit 54bbe0e823
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,20 +63,21 @@ public class ParkingTypeBottomSheetDialogFragment extends MenuBottomSheetDialogF
if (plugin.isParkingEventAdded()) {
plugin.showDeleteEventWarning(mapActivity);
}
if (limited) {
plugin.setParkingPosition(latitude, longitude, true);
plugin.showSetTimeLimitDialog(mapActivity, new Dialog(getContext()));
mapActivity.refreshMap();
plugin.showSetTimeLimitDialog(mapActivity, new Dialog(mapActivity));
} else {
plugin.addOrRemoveParkingEvent(false);
plugin.setParkingPosition(latitude, longitude, false);
plugin.showContextMenuIfNeeded(mapActivity, true);
mapActivity.refreshMap();
}
mapActivity.refreshMap();
mapActivity.getMyApplication().getFavorites().setSpecialPoint(
plugin.getParkingPosition(), SpecialPointType.PARKING, null);
if (!limited) {
plugin.showContextMenuIfNeeded(mapActivity, true);
}
dismiss();
}
dismiss();
}
}