Fix polls displaying incorrectly in dark mode

This commit is contained in:
Shadowfacts 2021-04-28 20:52:57 -04:00
parent 4dd510f3af
commit 654f84363a
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class PollOptionCheckboxView: UIView {
layer.borderColor = UIColor.gray.cgColor
}
backgroundColor = isChecked && !voted ? tintColor : .clear
imageView.tintColor = voted ? .black : .white
imageView.tintColor = voted ? .label : .white
}
}