瀏覽代碼

Fix: next page on the bottom toolbar

cooperku_kdanmobile 6 年之前
父節點
當前提交
856af4991e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/kdanmobile/reader/ReaderActivity.kt

+ 1 - 1
src/main/java/com/kdanmobile/reader/ReaderActivity.kt

@@ -773,7 +773,7 @@ abstract class ReaderActivity : AppCompatActivity() {
         ib_readerActivity_bottomToolbarNext.setOnClickListener {
         ib_readerActivity_bottomToolbarNext.setOnClickListener {
             val handler = viewModel.pdfInfoHandler
             val handler = viewModel.pdfInfoHandler
             val pageIndex = handler.getCurrentPage()
             val pageIndex = handler.getCurrentPage()
-            val nextPageIndex = Math.min(pageIndex + 1, handler.getPdfPageCount())
+            val nextPageIndex = Math.min(pageIndex + 1, handler.getPdfPageCount() - 1)
             handler.setCurrentPage(nextPageIndex)
             handler.setCurrentPage(nextPageIndex)
         }
         }
         ib_readerActivity_bottomToolbarKdanCloud.visibility = if (isBottomBarKdanCloudBtnVisible()) {
         ib_readerActivity_bottomToolbarKdanCloud.visibility = if (isBottomBarKdanCloudBtnVisible()) {