diff --git a/Yep/Extensions/UIImage+Yep.swift b/Yep/Extensions/UIImage+Yep.swift index 2f27725a..dbc93214 100644 --- a/Yep/Extensions/UIImage+Yep.swift +++ b/Yep/Extensions/UIImage+Yep.swift @@ -11,7 +11,7 @@ import UIKit extension UIImage { func roundImageOfRadius(radius: CGFloat) -> UIImage { - let radius = floor(radius - 0.5) + let radius = floor(radius - UIDevice.matchMarginFrom(0.5, 0.5, 1.5)) return self.largestCenteredSquareImage().resizeToTargetSize(CGSize(width: radius * 2, height: radius * 2)).roundImage() }