Avoid crash in DeleteLibraryMangaDialog
No clue why it ever gets a -1 index though.
(cherry picked from commit b12c7cf963
)
This commit is contained in:
parent
08e6487a9a
commit
79323de326
1 changed files with 5 additions and 3 deletions
|
@ -64,9 +64,11 @@ fun DeleteLibraryMangaDialog(
|
||||||
list.forEach { state ->
|
list.forEach { state ->
|
||||||
val onCheck = {
|
val onCheck = {
|
||||||
val index = list.indexOf(state)
|
val index = list.indexOf(state)
|
||||||
val mutableList = list.toMutableList()
|
if (index != -1) {
|
||||||
mutableList[index] = state.next() as CheckboxState.State<Int>
|
val mutableList = list.toMutableList()
|
||||||
list = mutableList.toList()
|
mutableList[index] = state.next() as CheckboxState.State<Int>
|
||||||
|
list = mutableList.toList()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Row(
|
Row(
|
||||||
|
|
Reference in a new issue