flip front photos horizontally by default

This commit is contained in:
tibbi 2018-06-05 13:50:42 +02:00
parent 686f37b32a
commit acea2ce5f2
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class Config(context: Context) : BaseConfig(context) {
set(turnFlashOffAtStartup) = prefs.edit().putBoolean(TURN_FLASH_OFF_AT_STARTUP, turnFlashOffAtStartup).apply()
var flipPhotos: Boolean
get() = prefs.getBoolean(FLIP_PHOTOS, false)
get() = prefs.getBoolean(FLIP_PHOTOS, true)
set(flipPhotos) = prefs.edit().putBoolean(FLIP_PHOTOS, flipPhotos).apply()
var lastUsedCamera: Int