diff --git a/Riot/Categories/MXKTableViewCellWithLabelAndSwitch.swift b/Riot/Categories/MXKTableViewCellWithLabelAndSwitch.swift index b1d288131..4db8e190b 100644 --- a/Riot/Categories/MXKTableViewCellWithLabelAndSwitch.swift +++ b/Riot/Categories/MXKTableViewCellWithLabelAndSwitch.swift @@ -22,9 +22,10 @@ extension MXKTableViewCellWithLabelAndSwitch: Reusable {} extension MXKTableViewCellWithLabelAndSwitch: Themable { func update(theme: Theme) { - mxkLabel.textColor = theme.textPrimaryColor - backgroundColor = theme.backgroundColor - contentView.backgroundColor = .clear + mxkLabel.textColor = theme.textPrimaryColor + backgroundColor = theme.backgroundColor + contentView.backgroundColor = .clear + mxkSwitch.tintColor = theme.tintColor } }