mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-06 10:47:25 +01:00
Fix misleading release grace period "Default" options
This commit is contained in:
parent
8f4bc71cf7
commit
8a5382042c
@ -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 New Issue
Block a user