From ac529cd07ff23d68b06c0ad4e03fdbaa2aa1b5b0 Mon Sep 17 00:00:00 2001 From: tibbi Date: Fri, 1 Jun 2018 21:26:11 +0200 Subject: [PATCH] do not mess with CONTROL_AF_MODE at touch-to-focus --- .../com/simplemobiletools/camera/views/PreviewCameraTwo.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/camera/views/PreviewCameraTwo.kt b/app/src/main/kotlin/com/simplemobiletools/camera/views/PreviewCameraTwo.kt index 29c98ec4..546be985 100644 --- a/app/src/main/kotlin/com/simplemobiletools/camera/views/PreviewCameraTwo.kt +++ b/app/src/main/kotlin/com/simplemobiletools/camera/views/PreviewCameraTwo.kt @@ -442,7 +442,6 @@ class PreviewCameraTwo : ViewGroup, TextureView.SurfaceTextureListener, MyPrevie mCaptureSession!!.stopRepeating() mPreviewRequestBuilder!!.apply { set(CaptureRequest.CONTROL_AF_TRIGGER, CameraMetadata.CONTROL_AF_TRIGGER_CANCEL) - set(CaptureRequest.CONTROL_AF_MODE, CaptureRequest.CONTROL_AF_MODE_OFF) mCaptureSession!!.capture(build(), captureCallbackHandler, mBackgroundHandler) val characteristics = getCameraCharacteristics() @@ -456,7 +455,6 @@ class PreviewCameraTwo : ViewGroup, TextureView.SurfaceTextureListener, MyPrevie } set(CaptureRequest.CONTROL_MODE, CameraMetadata.CONTROL_MODE_AUTO) - set(CaptureRequest.CONTROL_AF_MODE, CaptureRequest.CONTROL_AF_MODE_AUTO) set(CaptureRequest.CONTROL_AF_TRIGGER, CameraMetadata.CONTROL_AF_TRIGGER_START) setTag(FOCUS_TAG) mCaptureSession!!.capture(build(), captureCallbackHandler, mBackgroundHandler)