fix:卷标题重复
This commit is contained in:
@@ -262,9 +262,8 @@ object WebBook {
|
|||||||
return bookChapter.url
|
return bookChapter.url
|
||||||
}
|
}
|
||||||
if(bookChapter.isVolume && bookChapter.url == bookChapter.title) {
|
if(bookChapter.isVolume && bookChapter.url == bookChapter.title) {
|
||||||
//不返回空值,是为了过书源检测
|
Debug.log(bookSource.bookSourceUrl, "⇒一级目录获取链接为空,正文返回空白")
|
||||||
Debug.log(bookSource.bookSourceUrl, "⇒一级目录正文,使用章节标题:${bookChapter.title}")
|
return ""
|
||||||
return bookChapter.title
|
|
||||||
}
|
}
|
||||||
return if (bookChapter.url == book.bookUrl && !book.tocHtml.isNullOrEmpty()) {
|
return if (bookChapter.url == book.bookUrl && !book.tocHtml.isNullOrEmpty()) {
|
||||||
BookContent.analyzeContent(
|
BookContent.analyzeContent(
|
||||||
|
|||||||
@@ -332,7 +332,7 @@ object ChapterProvider {
|
|||||||
}
|
}
|
||||||
lineIndex == layout.lineCount - 1 -> {
|
lineIndex == layout.lineCount - 1 -> {
|
||||||
//最后一行
|
//最后一行
|
||||||
textLine.text = if(isVolumeTitle) "" else "$words\n"
|
textLine.text = "$words\n"
|
||||||
isLastLine = true
|
isLastLine = true
|
||||||
//标题居中
|
//标题居中
|
||||||
val startX = if (isTitle && ReadBookConfig.titleMode == 1 || isVolumeTitle)
|
val startX = if (isTitle && ReadBookConfig.titleMode == 1 || isVolumeTitle)
|
||||||
@@ -349,7 +349,7 @@ object ChapterProvider {
|
|||||||
}
|
}
|
||||||
else -> {
|
else -> {
|
||||||
//中间行
|
//中间行
|
||||||
textLine.text = if(isVolumeTitle) "" else words
|
textLine.text = words
|
||||||
addCharsToLineMiddle(
|
addCharsToLineMiddle(
|
||||||
absStartX,
|
absStartX,
|
||||||
textLine,
|
textLine,
|
||||||
|
|||||||
Reference in New Issue
Block a user