Skip to content

Commit 5215b1c

Browse files
committedMar 20, 2025
Stop scaling the large Info button
1 parent 31b3a15 commit 5215b1c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎ios/MullvadVPN/Extensions/UIImage+Assets.swift

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ extension UIImage {
2929

3030
static var infoLarge: UIImage {
3131
UIImage(named: "IconInfo")!
32-
.resized(to: CGSize(width: 44, height: 44), trimmingBorder: 2)
3332
}
3433

3534
static var settings: UIImage {

‎ios/MullvadVPN/View controllers/Alert/AlertViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ class AlertViewController: UIViewController {
284284
imageContainerView.addConstrainedSubviews([imageView]) {
285285
imageView.pinEdges(.init([.top(0), .bottom(0)]), to: imageContainerView)
286286
imageView.centerXAnchor.constraint(equalTo: imageContainerView.centerXAnchor, constant: 0)
287-
imageView.heightAnchor.constraint(equalToConstant: 44)
287+
imageView.heightAnchor.constraint(equalToConstant: 52)
288288
imageView.widthAnchor.constraint(equalTo: imageView.heightAnchor, multiplier: 1)
289289
}
290290

0 commit comments

Comments
 (0)