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 Aug 21, 2023
1 parent 7be36f5 commit fabd44d
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 fabd44d

Please # to comment.