mirror of
https://github.com/SimpleMobileTools/Simple-Camera.git
synced 2025-06-27 09:02:59 +02:00
try disabling Focus before capture by default
This commit is contained in:
@ -30,7 +30,7 @@ class Config(context: Context) : BaseConfig(context) {
|
||||
set(enabled) = prefs.edit().putBoolean(SOUND, enabled).apply()
|
||||
|
||||
var focusBeforeCapture: Boolean
|
||||
get() = prefs.getBoolean(FOCUS_BEFORE_CAPTURE, true)
|
||||
get() = prefs.getBoolean(FOCUS_BEFORE_CAPTURE, false)
|
||||
set(focus) = prefs.edit().putBoolean(FOCUS_BEFORE_CAPTURE, focus).apply()
|
||||
|
||||
var volumeButtonsAsShutter: Boolean
|
||||
|
Reference in New Issue
Block a user