try setting speed as the file loading priority by default

This commit is contained in:
tibbi 2021-03-30 22:57:52 +02:00
parent 16e8207b36
commit bfda618d7f
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ class Config(context: Context) : BaseConfig(context) {
set(screenRotation) = prefs.edit().putInt(SCREEN_ROTATION, screenRotation).apply()
var fileLoadingPriority: Int
get() = prefs.getInt(FILE_LOADING_PRIORITY, PRIORITY_COMPROMISE)
get() = prefs.getInt(FILE_LOADING_PRIORITY, PRIORITY_SPEED)
set(fileLoadingPriority) = prefs.edit().putInt(FILE_LOADING_PRIORITY, fileLoadingPriority).apply()
var loopVideos: Boolean