mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
优化
This commit is contained in:
@@ -326,7 +326,7 @@ data class TextPage(
|
||||
|
||||
fun render(view: ContentTextView): Boolean {
|
||||
if (!isCompleted) return false
|
||||
return canvasRecorder.recordIfNeeded(view.width, view.height) {
|
||||
return canvasRecorder.recordIfNeeded(view.width, height.toInt() + paddingTop) {
|
||||
drawPage(view, this)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -446,9 +446,7 @@ class TextChapterLayout(
|
||||
val textLine = TextLine(isTitle = isTitle)
|
||||
if (durY + textHeight > visibleHeight) {
|
||||
val textPage = pendingTextPage
|
||||
if (textPage.height < durY) {
|
||||
textPage.height = durY
|
||||
}
|
||||
textPage.height = textPage.lines.lastOrNull()?.lineBottom ?: 0f
|
||||
if (doublePage && absStartX < viewWidth / 2) {
|
||||
//当前页面左列结束
|
||||
textPage.leftLineSize = textPage.lineSize
|
||||
|
||||
Reference in New Issue
Block a user