enable autoplay videos by default
This commit is contained in:
parent
a3238a6b95
commit
40f7321064
|
@ -153,7 +153,7 @@ class Config(context: Context) : BaseConfig(context) {
|
|||
set(includedFolders) = prefs.edit().remove(INCLUDED_FOLDERS).putStringSet(INCLUDED_FOLDERS, includedFolders).apply()
|
||||
|
||||
var autoplayVideos: Boolean
|
||||
get() = prefs.getBoolean(AUTOPLAY_VIDEOS, false)
|
||||
get() = prefs.getBoolean(AUTOPLAY_VIDEOS, true)
|
||||
set(autoplay) = prefs.edit().putBoolean(AUTOPLAY_VIDEOS, autoplay).apply()
|
||||
|
||||
var animateGifs: Boolean
|
||||
|
|
Loading…
Reference in New Issue