This commit is contained in:
Horis 2024-02-24 09:48:17 +08:00
parent 13891e8037
commit 7a7a332d35

View File

@ -529,8 +529,7 @@ object ReadBook : CoroutineScope by MainScope() {
.getContent(book, chapter, content, includeTitle = false) .getContent(book, chapter, content, includeTitle = false)
val textChapter = val textChapter =
ChapterProvider.getTextChapterAsync(chapter, displayTitle, contents, chapterSize) ChapterProvider.getTextChapterAsync(chapter, displayTitle, contents, chapterSize)
val offset = chapter.index - durChapterIndex when (val offset = chapter.index - durChapterIndex) {
when (offset) {
0 -> { 0 -> {
curTextChapter?.cancelLayout() curTextChapter?.cancelLayout()
curTextChapter = textChapter curTextChapter = textChapter
@ -551,8 +550,7 @@ object ReadBook : CoroutineScope by MainScope() {
available = true available = true
} }
if (upContent && isScroll) { if (upContent && isScroll) {
val pageIndex = durPageIndex if (max(index - 3, 0) < durPageIndex) {
if (max(index - 3, 0) < pageIndex) {
callBack?.upContent(offset, resetPageOffset) callBack?.upContent(offset, resetPageOffset)
} }
} }