diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2019-05-21 18:52:27 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2019-05-22 11:35:38 +0200 |
| commit | 860dbebbfe49226508765dc04072104971fa41a2 (patch) | |
| tree | 1ef5f11a26ebf299f67caf2c44299add55850f81 /ios/MullvadVPN/BasicTableViewCell.swift | |
| parent | e4c07244f9064630133412050482308a2a34c502 (diff) | |
| download | mullvadvpn-860dbebbfe49226508765dc04072104971fa41a2.tar.xz mullvadvpn-860dbebbfe49226508765dc04072104971fa41a2.zip | |
Scope colors into UIColor sub-structs
Diffstat (limited to 'ios/MullvadVPN/BasicTableViewCell.swift')
| -rw-r--r-- | ios/MullvadVPN/BasicTableViewCell.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ios/MullvadVPN/BasicTableViewCell.swift b/ios/MullvadVPN/BasicTableViewCell.swift index 288b59c4b5..88a573bb1a 100644 --- a/ios/MullvadVPN/BasicTableViewCell.swift +++ b/ios/MullvadVPN/BasicTableViewCell.swift @@ -14,10 +14,10 @@ class BasicTableViewCell: UITableViewCell { super.awakeFromNib() let backgroundView = UIView() - backgroundView.backgroundColor = UIColor.cellBackgroundColor + backgroundView.backgroundColor = UIColor.Cell.backgroundColor let selectedBackgroundView = UIView() - selectedBackgroundView.backgroundColor = UIColor.cellSelectedBackgroundColor + selectedBackgroundView.backgroundColor = UIColor.Cell.selectedBackgroundColor self.backgroundView = backgroundView self.selectedBackgroundView = selectedBackgroundView |
