do not animate gifs by default
This commit is contained in:
parent
b94b803a40
commit
99eb87ec8b
|
@ -97,7 +97,7 @@ class Config(context: Context) : BaseConfig(context) {
|
|||
set(autoplay) = prefs.edit().putBoolean(AUTOPLAY_VIDEOS, autoplay).apply()
|
||||
|
||||
var animateGifs: Boolean
|
||||
get() = prefs.getBoolean(ANIMATE_GIFS, true)
|
||||
get() = prefs.getBoolean(ANIMATE_GIFS, false)
|
||||
set(animateGifs) = prefs.edit().putBoolean(ANIMATE_GIFS, animateGifs).apply()
|
||||
|
||||
var loopVideos: Boolean
|
||||
|
|
Loading…
Reference in New Issue