Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Reorder start screen options to match bottom nav

Cette révision appartient à :
arkon 2020-03-07 18:01:37 -05:00
Parent 0ec8def0d8
révision f0f613e2cf

Voir le fichier

@ -27,9 +27,11 @@ class SettingsGeneralController : SettingsController() {
intListPreference { intListPreference {
key = Keys.startScreen key = Keys.startScreen
titleRes = R.string.pref_start_screen titleRes = R.string.pref_start_screen
entriesRes = arrayOf(R.string.label_library, R.string.label_recent_manga, entriesRes = arrayOf(
R.string.label_recent_updates) R.string.label_library,
entryValues = arrayOf("1", "2", "3") R.string.label_recent_updates,
R.string.label_recent_manga)
entryValues = arrayOf("1", "3", "2")
defaultValue = "1" defaultValue = "1"
summary = "%s" summary = "%s"
} }