Skip to content

Commit ed3bdfe

Browse files
committed
keep autofocusing every 3 secs only we are in photo mode, or not recording
1 parent 3d86c95 commit ed3bdfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • app/src/main/kotlin/com/simplemobiletools/camera

app/src/main/kotlin/com/simplemobiletools/camera/Preview.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ class Preview : ViewGroup, SurfaceHolder.Callback, MediaScannerConnection.OnScan
346346
camera.parameters = mParameters
347347
if (takePictureAfter) {
348348
takePicture()
349-
} else {
349+
} else if (!mIsVideoMode || !mIsRecording) {
350350
Handler().postDelayed({
351351
focusArea(false, false)
352352
}, 3000)

0 commit comments

Comments
 (0)