mirror of
https://git.mihon.tech/mihonapp/mihon
synced 2024-11-21 12:45:44 +03:00
ChapterNavigator: dispatch page change only when needed
Co-authored-by: p
This commit is contained in:
parent
37419cdc26
commit
f84d9a08b4
1 changed files with 4 additions and 1 deletions
|
@ -114,7 +114,10 @@ fun ChapterNavigator(
|
|||
valueRange = 1f..totalPages.toFloat(),
|
||||
steps = totalPages - 2,
|
||||
onValueChange = {
|
||||
onSliderValueChange(it.roundToInt() - 1)
|
||||
val new = it.roundToInt() - 1
|
||||
if (new != currentPage) {
|
||||
onSliderValueChange(new)
|
||||
}
|
||||
},
|
||||
interactionSource = interactionSource,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue