summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ios/MullvadVPN/SelectLocationController.swift14
1 files changed, 0 insertions, 14 deletions
diff --git a/ios/MullvadVPN/SelectLocationController.swift b/ios/MullvadVPN/SelectLocationController.swift
index 4441e8c18a..509c67e93e 100644
--- a/ios/MullvadVPN/SelectLocationController.swift
+++ b/ios/MullvadVPN/SelectLocationController.swift
@@ -65,9 +65,6 @@ class SelectLocationController: UITableViewController, RelayCacheObserver {
self?.collapseCell(cell)
}
- // Prevent overlap between cells and subcells
- cell.layer.zPosition = item.zPosition
-
return cell
})
@@ -378,17 +375,6 @@ private enum DataSourceItem: Hashable {
}
}
- var zPosition: CGFloat {
- switch self {
- case .country:
- return 3
- case .city:
- return 2
- case .hostname:
- return 1
- }
- }
-
}
extension ServerRelaysResponse {