We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fd9fda commit d66291aCopy full SHA for d66291a
1 file changed
Sources/DiffableKit/Table/Cells/DiffableTableViewCell.swift
@@ -29,7 +29,7 @@ open class DiffableTableViewCell: UITableViewCell {
29
super.tintColorDidChange()
30
guard var content = contentConfiguration as? UIListContentConfiguration else { return }
31
if tintAdjustmentMode == .dimmed {
32
- originalImage = content.image
+ if originalImage == nil { originalImage = content.image }
33
content.image = originalImage?.desaturated()
34
} else if let original = originalImage {
35
content.image = original
0 commit comments