mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-13 00:05:08 +01:00
Increase webtoon setting change page refresh range
This commit is contained in:
parent
41d1aaa02c
commit
f1a9434d10
@ -294,7 +294,8 @@ class WebtoonViewer(val activity: ReaderActivity, val isContinuous: Boolean = tr
|
|||||||
private fun refreshAdapter() {
|
private fun refreshAdapter() {
|
||||||
val position = layoutManager.findLastEndVisibleItemPosition()
|
val position = layoutManager.findLastEndVisibleItemPosition()
|
||||||
adapter.notifyItemRangeChanged(
|
adapter.notifyItemRangeChanged(
|
||||||
max(0, position - 2),
|
max(0, position - 3),
|
||||||
min(position + 2, adapter.itemCount - 1))
|
min(position + 3, adapter.itemCount - 1)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user