disable image brightness gestures by default, it causes zooming issues
This commit is contained in:
parent
c4d10019ba
commit
fb053fb487
|
@ -254,7 +254,7 @@ class Config(context: Context) : BaseConfig(context) {
|
||||||
set(deleteEmptyFolders) = prefs.edit().putBoolean(DELETE_EMPTY_FOLDERS, deleteEmptyFolders).apply()
|
set(deleteEmptyFolders) = prefs.edit().putBoolean(DELETE_EMPTY_FOLDERS, deleteEmptyFolders).apply()
|
||||||
|
|
||||||
var allowPhotoGestures: Boolean
|
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()
|
set(allowPhotoGestures) = prefs.edit().putBoolean(ALLOW_PHOTO_GESTURES, allowPhotoGestures).apply()
|
||||||
|
|
||||||
var allowVideoGestures: Boolean
|
var allowVideoGestures: Boolean
|
||||||
|
|
Loading…
Reference in New Issue