From bfda618d7febe5cbd7b9b32ff0162c4784f77ba0 Mon Sep 17 00:00:00 2001 From: tibbi Date: Tue, 30 Mar 2021 22:57:52 +0200 Subject: [PATCH] try setting speed as the file loading priority by default --- .../kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt index a47cd8f08..21d3d463e 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/helpers/Config.kt @@ -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