[strings] Remove "Avoid on every route" on iOS

Co-authored-by: meenbeese <meenbeese@tutanota.com>
Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
This commit is contained in:
David Martinez 2023-10-07 11:00:53 +02:00 committed by Alexander Borsuk
parent 507caa7820
commit 3dd9024a1a
2 changed files with 1 additions and 5 deletions

View file

@ -16,7 +16,7 @@
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" cocoaTouchSystemColor="groupTableViewBackgroundColor"/>
<sections>
<tableViewSection headerTitle="AVOID ON EVERY ROUTE" id="qNN-Uw-84i">
<tableViewSection id="qNN-Uw-84i">
<cells>
<tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="YrA-ve-xPG" customClass="SettingsTableViewSwitchCell" customModule="OMaps" customModuleProvider="target">
<rect key="frame" x="0.0" y="55.5" width="375" height="44"/>

View file

@ -14,10 +14,6 @@ class DrivingOptionsViewController: MWMTableViewController {
ferryCrossingsCell.isOn = options.avoidFerry
motorwaysCell.isOn = options.avoidMotorway
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return L("driving_options_subheader")
}
}
extension DrivingOptionsViewController: SettingsTableViewSwitchCellDelegate {