disable image brightness gestures by default, it causes zooming issues

This commit is contained in:
tibbi 2018-02-06 16:59:52 +01:00
parent c4d10019ba
commit fb053fb487
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ class Config(context: Context) : BaseConfig(context) {
set(deleteEmptyFolders) = prefs.edit().putBoolean(DELETE_EMPTY_FOLDERS, deleteEmptyFolders).apply()
var allowPhotoGestures: Boolean
get() = prefs.getBoolean(ALLOW_PHOTO_GESTURES, true)
get() = prefs.getBoolean(ALLOW_PHOTO_GESTURES, false)
set(allowPhotoGestures) = prefs.edit().putBoolean(ALLOW_PHOTO_GESTURES, allowPhotoGestures).apply()
var allowVideoGestures: Boolean