Add option to change double tap animation speed in the reader (#974)

* Add option to change double tap animation speed in the reader

* address requests from review
This commit is contained in:
Joel Shapiro
2018-01-26 13:22:31 -06:00
committed by Bram van de Kerkhof
parent a65a71df5d
commit f88dd28c51
8 changed files with 38 additions and 0 deletions
@@ -62,6 +62,14 @@ class SettingsReaderController : SettingsController() {
defaultValue = "0"
summary = "%s"
}
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
defaultValue = "500"
summary = "%s"
}
switchPreference {
key = Keys.fullscreen
titleRes = R.string.pref_fullscreen