disable autoplaying videos by default
This commit is contained in:
parent
8cee888dc6
commit
7e7ef2063e
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ class Config(context: Context) : BaseConfig(context) {
|
||||||
set(includedFolders) = prefs.edit().remove(INCLUDED_FOLDERS).putStringSet(INCLUDED_FOLDERS, includedFolders).apply()
|
set(includedFolders) = prefs.edit().remove(INCLUDED_FOLDERS).putStringSet(INCLUDED_FOLDERS, includedFolders).apply()
|
||||||
|
|
||||||
var autoplayVideos: Boolean
|
var autoplayVideos: Boolean
|
||||||
get() = prefs.getBoolean(AUTOPLAY_VIDEOS, true)
|
get() = prefs.getBoolean(AUTOPLAY_VIDEOS, false)
|
||||||
set(autoplay) = prefs.edit().putBoolean(AUTOPLAY_VIDEOS, autoplay).apply()
|
set(autoplay) = prefs.edit().putBoolean(AUTOPLAY_VIDEOS, autoplay).apply()
|
||||||
|
|
||||||
var animateGifs: Boolean
|
var animateGifs: Boolean
|
||||||
|
|
Loading…
Reference in a new issue