fix: close button highlight

This commit is contained in:
CMK 2021-04-30 19:34:45 +08:00
parent 678ea6b3fc
commit f755a0eb2d
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ final class MediaPreviewViewController: UIViewController, NeedsDependency {
let closeButtonBackgroundVisualEffectView = UIVisualEffectView(effect: UIVibrancyEffect(blurEffect: UIBlurEffect(style: .systemUltraThinMaterial)))
let closeButton: UIButton = {
let button = HitTestExpandedButton()
let button = HighlightDimmableButton()
button.expandEdgeInsets = UIEdgeInsets(top: -10, left: -10, bottom: -10, right: -10)
button.imageView?.tintColor = .label
button.setImage(UIImage(systemName: "xmark", withConfiguration: UIImage.SymbolConfiguration(pointSize: 16, weight: .bold))!, for: .normal)
return button