mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-23 04:57:59 +01:00
do not animate gifs by default
This commit is contained in:
parent
b94b803a40
commit
99eb87ec8b
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ class Config(context: Context) : BaseConfig(context) {
|
||||||
set(autoplay) = prefs.edit().putBoolean(AUTOPLAY_VIDEOS, autoplay).apply()
|
set(autoplay) = prefs.edit().putBoolean(AUTOPLAY_VIDEOS, autoplay).apply()
|
||||||
|
|
||||||
var animateGifs: Boolean
|
var animateGifs: Boolean
|
||||||
get() = prefs.getBoolean(ANIMATE_GIFS, true)
|
get() = prefs.getBoolean(ANIMATE_GIFS, false)
|
||||||
set(animateGifs) = prefs.edit().putBoolean(ANIMATE_GIFS, animateGifs).apply()
|
set(animateGifs) = prefs.edit().putBoolean(ANIMATE_GIFS, animateGifs).apply()
|
||||||
|
|
||||||
var loopVideos: Boolean
|
var loopVideos: Boolean
|
||||||
|
|
Loading…
Reference in a new issue