summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBug Magnet <marco.nikic@mullvad.net>2025-09-19 11:41:51 +0200
committerBug Magnet <marco.nikic@mullvad.net>2025-09-19 11:41:51 +0200
commitacdbc96d329461fdc63568e4b5827308a0e5516b (patch)
tree280406f9b31ca4755a7502b9094e66f6ab82162a
parente0bb1f2eb3396b925ade89f5a46420563e59dc4c (diff)
parent74715ffc2207803a6b362ece4398da4cd34a3b2b (diff)
downloadmullvadvpn-acdbc96d329461fdc63568e4b5827308a0e5516b.tar.xz
mullvadvpn-acdbc96d329461fdc63568e4b5827308a0e5516b.zip
Merge branch 'list-item-background-color-changes-when-expandedcollapsed-in-ios-1240'
-rw-r--r--ios/MullvadVPN/View controllers/VPNSettings/CustomDNSCellFactory.swift1
1 files changed, 1 insertions, 0 deletions
diff --git a/ios/MullvadVPN/View controllers/VPNSettings/CustomDNSCellFactory.swift b/ios/MullvadVPN/View controllers/VPNSettings/CustomDNSCellFactory.swift
index 0118ee2a43..8d80402bf3 100644
--- a/ios/MullvadVPN/View controllers/VPNSettings/CustomDNSCellFactory.swift
+++ b/ios/MullvadVPN/View controllers/VPNSettings/CustomDNSCellFactory.swift
@@ -141,6 +141,7 @@ final class CustomDNSCellFactory: @preconcurrency CellFactoryProtocol {
cell.action = { [weak self] isOn in
self?.delegate?.didChangeState(for: .useCustomDNS, isOn: isOn)
}
+ cell.backgroundView?.backgroundColor = UIColor.Cell.Background.normal
case .addDNSServer:
guard let cell = cell as? SettingsAddDNSEntryCell else { return }