From 64f8dbbcc3a46b614dbf9ed82f463b522957880e Mon Sep 17 00:00:00 2001 From: leoz Date: Wed, 21 Feb 2024 11:25:37 -0500 Subject: Lint fixes --- Sources/SwiftyCrop/View/CropView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/SwiftyCrop/View/CropView.swift b/Sources/SwiftyCrop/View/CropView.swift index 73caaf1..92b1138 100644 --- a/Sources/SwiftyCrop/View/CropView.swift +++ b/Sources/SwiftyCrop/View/CropView.swift @@ -47,7 +47,7 @@ struct CropView: View { viewModel.lastScale = viewModel.scale viewModel.lastOffset = viewModel.offset } - + let dragGesture = DragGesture() .onChanged { value in let maxOffsetPoint = viewModel.calculateDragGestureMax() @@ -64,9 +64,9 @@ struct CropView: View { .onEnded { _ in viewModel.lastOffset = viewModel.offset } - + let combinedGesture = magnificationGesture.simultaneously(with: dragGesture) - + VStack { Text("interaction_instructions", tableName: localizableTableName, bundle: .module) .font(.system(size: 16, weight: .regular)) -- cgit v1.2.3