do not animate gifs by default

This commit is contained in:
tibbi 2017-03-04 10:35:47 +01:00
parent b94b803a40
commit 99eb87ec8b
1 changed files with 1 additions and 1 deletions

View File

@ -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