[fix] [ios] Diabled navigation toast view on no location.

This commit is contained in:
Ilya Grechuhin 2017-06-26 16:14:22 +03:00 committed by Sergey Yershov
parent 3c35386493
commit d4edcee341

View file

@ -121,8 +121,15 @@ BOOL defaultOrientation(CGSize const & size)
{
if (![MWMRouter startPoint])
{
[self.toastView configWithText:L(@"planning_route_need_start") withActionButton:YES];
[self setToastViewHidden:NO];
if ([MWMLocationManager lastLocation])
{
[self.toastView configWithText:L(@"planning_route_need_start") withActionButton:YES];
[self setToastViewHidden:NO];
}
else
{
[self setToastViewHidden:YES];
}
}
else if (![MWMRouter finishPoint])
{