diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index dc99c8b730..459e2834a1 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -598,7 +598,7 @@ NSString * const kAuthorizationSegue = @"Map2AuthorizationSegue"; { if (platform::migrate::NeedMigrate()) return; - bool autoDownloadEnabled = false; + bool autoDownloadEnabled = true; (void)Settings::Get(kAutoDownloadEnabledKey, autoDownloadEnabled); if (autoDownloadEnabled && Platform::ConnectionStatus() == Platform::EConnectionType::CONNECTION_WIFI) GetFramework().GetCountryTree().GetActiveMapLayout().DownloadMap(idx, MapOptions::MapWithCarRouting); diff --git a/iphone/Maps/Settings/SettingsViewController.mm b/iphone/Maps/Settings/SettingsViewController.mm index fbb22dd551..e32eb9e27c 100644 --- a/iphone/Maps/Settings/SettingsViewController.mm +++ b/iphone/Maps/Settings/SettingsViewController.mm @@ -134,11 +134,11 @@ typedef NS_ENUM(NSUInteger, Section) // Auto download case 2: { - bool autoDownloadEnabled = false; + bool autoDownloadEnabled = true; (void)Settings::Get(kAutoDownloadEnabledKey, autoDownloadEnabled); cell = [tableView dequeueReusableCellWithIdentifier:[SwitchCell className]]; SwitchCell * customCell = static_cast(cell); - customCell.titleLabel.text = L(@"pref_auto_download_title"); + customCell.titleLabel.text = L(@"mwm_autodownload"); customCell.switchButton.on = autoDownloadEnabled; customCell.delegate = self; break;