Skip to content

Commit

Permalink
Fix brave/brave-ios#5357: Add back scale aspect fit to Favicons (brav…
Browse files Browse the repository at this point in the history
…e/brave-ios#7906)

Add back scale aspect fit. Seems to have been reverted or broke during a rebase?
  • Loading branch information
Brandon-T authored Aug 21, 2023
1 parent 6fc6c3c commit 4db0bca
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ class TabCell: UICollectionViewCell {
endPoint: CGPoint(x: 0, y: 1)
)
let titleLabel: UILabel
let favicon: UIImageView = UIImageView()
let favicon: UIImageView = UIImageView().then {
$0.contentMode = .scaleAspectFit
}
let closeButton: UIButton

var animator: SwipeAnimator!
Expand Down

0 comments on commit 4db0bca

Please sign in to comment.