Fix disclosure color when selected

This commit is contained in:
Maurice Parker
2022-10-30 16:01:04 -05:00
parent 177f21a85e
commit 67aae179b0
2 changed files with 4 additions and 2 deletions

View File

@@ -51,8 +51,8 @@
"repositoryURL": "https://github.com/microsoft/plcrashreporter.git",
"state": {
"branch": null,
"revision": "81cdec2b3827feb03286cb297f4c501a8eb98df1",
"version": "1.10.2"
"revision": "b1a342da19ed9b3af61ea2efa7656c2af30aeb7c",
"version": "1.11.0"
}
},
{

View File

@@ -171,8 +171,10 @@ class MasterFeedTableViewCell : VibrantTableViewCell {
let iconTintColor: UIColor
if isHighlighted || isSelected {
disclosureButton?.tintColor = AppAssets.vibrantTextColor
iconTintColor = AppAssets.vibrantTextColor
} else {
disclosureButton?.tintColor = AppAssets.secondaryAccentColor
if let preferredColor = iconImage?.preferredColor {
iconTintColor = UIColor(cgColor: preferredColor)
} else {