Add gray reader background option (closes #3019)

This commit is contained in:
arkon
2020-05-01 21:40:36 -04:00
parent abf2d4b718
commit 1ab07d169d
6 changed files with 15 additions and 11 deletions
@@ -68,8 +68,8 @@ class SettingsReaderController : SettingsController() {
intListPreference {
key = Keys.readerTheme
titleRes = R.string.pref_reader_theme
entriesRes = arrayOf(R.string.white_background, R.string.black_background)
entryValues = arrayOf("0", "1")
entriesRes = arrayOf(R.string.black_background, R.string.gray_background, R.string.white_background)
entryValues = arrayOf("1", "2", "0")
defaultValue = "1"
summary = "%s"
}