mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-12-22 06:31:52 +01:00
Trackers empty scores start starts from middle (#9624)
* Trackers empty scores start starts from middle * Trackers empty scores start starts from middle * Trackers empty scores start starts from middle
This commit is contained in:
parent
f2b0d74b4c
commit
2eca8511cb
@ -123,7 +123,7 @@ fun TrackScoreSelector(
|
|||||||
content = {
|
content = {
|
||||||
WheelTextPicker(
|
WheelTextPicker(
|
||||||
modifier = Modifier.align(Alignment.Center),
|
modifier = Modifier.align(Alignment.Center),
|
||||||
startIndex = selections.indexOf(selection).coerceAtLeast(0),
|
startIndex = selections.indexOf(selection).takeIf { it > 0 } ?: (selections.size / 2),
|
||||||
items = selections,
|
items = selections,
|
||||||
onSelectionChanged = { onSelectionChange(selections[it]) },
|
onSelectionChanged = { onSelectionChange(selections[it]) },
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user