mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 07:37:48 +01:00
Fix misleading release grace period "Default" options
This commit is contained in:
parent
8f4bc71cf7
commit
8a5382042c
1 changed files with 1 additions and 7 deletions
|
@ -335,13 +335,7 @@ object SettingsLibraryScreen : SearchableSettings {
|
|||
contentAlignment = Alignment.Center,
|
||||
) {
|
||||
val size = DpSize(width = maxWidth / 2, height = 128.dp)
|
||||
val items = (0..MAX_GRACE_PERIOD).map {
|
||||
if (it == 0) {
|
||||
stringResource(R.string.label_default)
|
||||
} else {
|
||||
it.toString()
|
||||
}
|
||||
}
|
||||
val items = (0..MAX_GRACE_PERIOD).map(Int::toString)
|
||||
Row(
|
||||
horizontalArrangement = Arrangement.spacedBy(8.dp),
|
||||
) {
|
||||
|
|
Loading…
Reference in a new issue