1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-09-11 05:05:23 +03:00

Clean up source code

This commit is contained in:
Yuri Strot 2019-05-24 19:43:21 +07:00
parent d0e55b8549
commit b239217a0d
4 changed files with 5 additions and 5 deletions

View File

@ -68,7 +68,7 @@ func MGraphicsBeginImageContextWithOptions(_ size: CGSize, _ opaque: Bool, _ sca
func MGraphicsGetImageFromCurrentImageContext() -> MImage? {
guard let ctx = MGraphicsGetCurrentContext(),
let theCGImage = ctx.makeImage() else {
return nil
return nil
}
let scale = ctx.scale
let size = CGSize(width: CGFloat(ctx.width) / scale, height: CGFloat(ctx.height) / scale)

View File

@ -81,7 +81,7 @@ open class MacawZoom {
}
private func getNewZoom() -> ZoomData {
if touches.count == 0 || (touches.count == 1 && !trackMove) {
if touches.isEmpty || (touches.count == 1 && !trackMove) {
return zoomData
}
let s1 = touches[0].point