Merge pull request #1583 from 1552980358/master
CodeView.kt: Optimize highlight() Editable length identification
This commit is contained in:
@@ -169,7 +169,10 @@ class CodeView : AppCompatMultiAutoCompleteTextView {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun highlight(editable: Editable): Editable {
|
private fun highlight(editable: Editable): Editable {
|
||||||
if (editable.isEmpty() || editable.length > 1024) return editable
|
// if (editable.isEmpty() || editable.length > 1024) return editable
|
||||||
|
if (editable.length !in 1 .. 1024) {
|
||||||
|
return editable
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
clearSpans(editable)
|
clearSpans(editable)
|
||||||
highlightErrorLines(editable)
|
highlightErrorLines(editable)
|
||||||
|
|||||||
Reference in New Issue
Block a user