diff --git a/Blockzilla/AutocompleteSettingViewController.swift b/Blockzilla/AutocompleteSettingViewController.swift index 2092b6201b..99bb6da0b6 100644 --- a/Blockzilla/AutocompleteSettingViewController.swift +++ b/Blockzilla/AutocompleteSettingViewController.swift @@ -52,7 +52,7 @@ class AutocompleteSettingViewController: UIViewController, UITableViewDelegate, if indexPath.section == 0 { cell = UITableViewCell(style: .subtitle, reuseIdentifier: "enableCell") cell.textLabel?.text = UIConstants.strings.autocompleteTopSites - + cell.contentView.layoutMargins = UIEdgeInsets(top: 0, left: UIConstants.layout.settingsCellLeftInset, bottom: 0, right: 0) let toggle = UISwitch() toggle.addTarget(self, action: #selector(defaultToggleSwitched(_:)), for: .valueChanged) toggle.accessibilityIdentifier = "toggleAutocompleteSwitch" @@ -64,7 +64,7 @@ class AutocompleteSettingViewController: UIViewController, UITableViewDelegate, if indexPath.row == 0 { cell = UITableViewCell(style: .subtitle, reuseIdentifier: "enableCell") cell.textLabel?.text = UIConstants.strings.autocompleteMySites - + cell.contentView.layoutMargins = UIEdgeInsets(top: 0, left: UIConstants.layout.settingsCellLeftInset, bottom: 0, right: 0) let toggle = UISwitch() toggle.addTarget(self, action: #selector(customToggleSwitched(_:)), for: .valueChanged) toggle.accessibilityIdentifier = "toggleCustomAutocompleteSwitch"