[ios] Remove open settings button from enable location services alert.

This commit is contained in:
v.mikhaylenko 2015-08-12 19:02:20 +03:00 committed by Alex Zolotarev
parent 07daef26be
commit f6f91390d2

View file

@ -49,7 +49,7 @@ static NSString * const kAlertControllerNibIdentifier = @"MWMAlertViewController
NSString * openSettings = L(@"settings");
if (isIOSVersionLessThan(8))
{
UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:title message:nil delegate:self cancelButtonTitle:cancel otherButtonTitles:openSettings, nil];
UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:title message:nil delegate:self cancelButtonTitle:cancel otherButtonTitles:nil];
[alertView show];
return;
}