Use a non-opaque background color for the image view

This commit is contained in:
Jed Fox 2022-12-03 14:07:43 -05:00
parent 1642839084
commit 4f8ca8d481
No known key found for this signature in database
GPG Key ID: 0B61D18EA54B47E1
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ public final class StatusCardControl: UIControl {
private func apply(theme: Theme) {
layer.borderColor = theme.separator.cgColor
dividerView.backgroundColor = theme.separator
imageView.backgroundColor = theme.systemElevatedBackgroundColor
imageView.backgroundColor = UIColor.tertiarySystemFill
}
}