Reorder animation speed options

(cherry picked from commit 943081e80d2fd4eab7bdf2e0e9dfc8ea1380f82e)
This commit is contained in:
arkon 2020-07-11 18:36:08 -04:00 committed by Jobobby04
parent 02ba0eca32
commit 9569f13190

View File

@ -39,8 +39,8 @@ class SettingsReaderController : SettingsController() {
intListPreference {
key = Keys.doubleTapAnimationSpeed
titleRes = R.string.pref_double_tap_anim_speed
entries = arrayOf(context.getString(R.string.double_tap_anim_speed_0), context.getString(R.string.double_tap_anim_speed_fast), context.getString(R.string.double_tap_anim_speed_normal))
entryValues = arrayOf("1", "250", "500") // using a value of 0 breaks the image viewer, so min is 1
entries = arrayOf(context.getString(R.string.double_tap_anim_speed_0), context.getString(R.string.double_tap_anim_speed_normal), context.getString(R.string.double_tap_anim_speed_fast))
entryValues = arrayOf("1", "500", "250") // using a value of 0 breaks the image viewer, so min is 1
defaultValue = "500"
summary = "%s"
}