Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Grechuhin <i.grechuhin@gmail.com>2016-01-28 11:44:43 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:16:02 +0300
commit9e09ffcc6a3acf4182e26819cb2e76480e148fee (patch)
tree1c89ae83e3b894f4a24b5a5dbdf5a95526512897 /iphone/Maps/Settings
parent60b7fe04176877f4c7b8168c30413f1917c3b2ff (diff)
[ios] Updated auto download settings.
Diffstat (limited to 'iphone/Maps/Settings')
-rw-r--r--iphone/Maps/Settings/SettingsViewController.mm4
1 files changed, 2 insertions, 2 deletions
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<SwitchCell *>(cell);
- customCell.titleLabel.text = L(@"pref_auto_download_title");
+ customCell.titleLabel.text = L(@"mwm_autodownload");
customCell.switchButton.on = autoDownloadEnabled;
customCell.delegate = self;
break;