Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Fix #5357: Add back scale aspect fit to Favicons (#7906)
Browse files Browse the repository at this point in the history
Add back scale aspect fit. Seems to have been reverted or broke during a rebase?
  • Loading branch information
Brandon-T authored and iccub committed Aug 21, 2023
1 parent 0dfdb8c commit 01145b4
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 01145b4

Please # to comment.