Update label for X button next to Recent searches from “close” to “clear”

This commit is contained in:
Jed Fox 2023-02-06 22:35:03 -05:00
parent 3b4d782325
commit e6a9a14361
No known key found for this signature in database
GPG Key ID: 0B61D18EA54B47E1
1 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,8 @@ final class SearchHistorySectionHeaderCollectionReusableView: UICollectionReusab
let button = UIButton(type: .system)
button.setImage(UIImage(systemName: "xmark.circle.fill"), for: .normal)
button.tintColor = Asset.Colors.Label.secondary.color
button.accessibilityLabel = L10n.Scene.Search.Searching.clear
return button
}()