From b3405961ac9bb658343dd551748e42cf7f74eb90 Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Tue, 27 Feb 2018 13:17:58 +0300 Subject: [PATCH] [MAPSME-6954] [ios] Fixed settings autodownload switch. --- iphone/Maps/UI/Settings/MWMSettingsViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/UI/Settings/MWMSettingsViewController.mm b/iphone/Maps/UI/Settings/MWMSettingsViewController.mm index 29d8e31047..5dd571f791 100644 --- a/iphone/Maps/UI/Settings/MWMSettingsViewController.mm +++ b/iphone/Maps/UI/Settings/MWMSettingsViewController.mm @@ -87,7 +87,7 @@ extern NSString * const kAlohalyticsTapEventKey; [self.autoDownloadCell configWithDelegate:self title:L(@"disable_autodownload") - isOn:![MWMSettings autoDownloadEnabled]]; + isOn:[MWMSettings autoDownloadEnabled]]; [self.backupBookmarksCell configWithDelegate:self title:L(@"settings_backup_bookmarks")