1
0
mirror of https://github.com/mihonapp/mihon.git synced 2025-07-30 11:25:54 +02:00

Fix webtoon viewer showing transition view when going to next/prev chapter using next/prev button ()

This commit is contained in:
CVIUS
2022-05-18 05:20:18 +08:00
committed by GitHub
parent 4481c54376
commit b21bcc2d45

@ -245,7 +245,7 @@ class WebtoonViewer(val activity: ReaderActivity, val isContinuous: Boolean = tr
logcat { "moveToPage" }
val position = adapter.items.indexOf(page)
if (position != -1) {
recycler.scrollToPosition(position)
layoutManager.scrollToPositionWithOffset(position, 0)
if (layoutManager.findLastEndVisibleItemPosition() == -1) {
onScrolled(pos = position)
}