This commit is contained in:
kunfei
2022-04-15 14:09:41 +08:00
parent ad72d779ca
commit af1dfea9cf

View File

@@ -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