mirror of
https://github.com/SimpleMobileTools/Simple-Camera.git
synced 2025-06-27 09:02:59 +02:00
call scanPath on the context after saving a video
This commit is contained in:
@ -41,10 +41,11 @@ class ChangeResolutionDialog(val activity: SimpleActivity, val config: Config, v
|
||||
RadioGroupDialog(activity, items, selectionIndex) {
|
||||
selectionIndex = it as Int
|
||||
view.change_resolution_photo.text = items[selectionIndex].title
|
||||
if (isBackCamera)
|
||||
if (isBackCamera) {
|
||||
config.backPhotoResIndex = it
|
||||
else
|
||||
} else {
|
||||
config.frontPhotoResIndex = it
|
||||
}
|
||||
dialog.dismiss()
|
||||
}
|
||||
}
|
||||
|
@ -737,7 +737,7 @@ class Preview : ViewGroup, SurfaceHolder.Callback, MediaScannerConnection.OnScan
|
||||
try {
|
||||
toggleShutterSound(true)
|
||||
mRecorder!!.stop()
|
||||
mActivity!!.scanPath(mCurrVideoPath) {}
|
||||
mActivity!!.applicationContext.scanPath(mCurrVideoPath) {}
|
||||
} catch (e: RuntimeException) {
|
||||
mActivity!!.showErrorToast(e)
|
||||
toggleShutterSound(false)
|
||||
|
Reference in New Issue
Block a user