ChapterNavigator: dispatch page change only when needed

Co-authored-by: p
(cherry picked from commit f84d9a08b4af768b1e9920c43cc445c86f5427fc)
This commit is contained in:
AntsyLich 2024-10-12 05:12:38 +06:00 committed by Cuong-Tran
parent 80063ffba4
commit bf6e1abbc7
No known key found for this signature in database
GPG key ID: 733AA7624B9315C2

View file

@ -151,7 +151,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,
)