pull/1625/head
kunfei 3 years ago
parent 65ecd69ad3
commit 33b7800215
  1. 7
      app/src/main/java/io/legado/app/ui/book/read/page/provider/ChapterProvider.kt

@ -164,7 +164,7 @@ object ChapterProvider {
} }
durY = setTypeImage( durY = setTypeImage(
book, bookChapter, matcher.group(1)!!, book, bookChapter, matcher.group(1)!!,
durY, textPages, book.getImageStyle() absStartX, durY, textPages, book.getImageStyle()
) )
start = matcher.end() start = matcher.end()
} }
@ -204,6 +204,7 @@ object ChapterProvider {
book: Book, book: Book,
chapter: BookChapter, chapter: BookChapter,
src: String, src: String,
absStartX: Int,
y: Float, y: Float,
textPages: ArrayList<TextPage>, textPages: ArrayList<TextPage>,
imageStyle: String?, imageStyle: String?,
@ -254,8 +255,8 @@ object ChapterProvider {
textLine.textChars.add( textLine.textChars.add(
TextChar( TextChar(
charData = src, charData = src,
start = start, start = absStartX + start,
end = end, end = absStartX + end,
isImage = true isImage = true
) )
) )

Loading…
Cancel
Save