pull/1794/head
kunfei 2 years ago
parent ad72d779ca
commit af1dfea9cf
  1. 8
      app/src/main/java/io/legado/app/ui/book/read/page/ContentTextView.kt

@ -454,10 +454,10 @@ class ContentTextView(context: Context, attrs: AttributeSet?) : View(context, at
}
fun compare(pos: Pos): Int {
if (relativePos < pos.relativePos) return -1
if (relativePos > pos.relativePos) return 1
if (lineIndex < pos.lineIndex) return -1
if (lineIndex > pos.lineIndex) return 1
if (relativePos < pos.relativePos) return -3
if (relativePos > pos.relativePos) return 3
if (lineIndex < pos.lineIndex) return -2
if (lineIndex > pos.lineIndex) return 2
if (charIndex < pos.charIndex) return -1
if (charIndex > pos.charIndex) return 1
return 0

Loading…
Cancel
Save