mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
字符串大于1024时禁用代码高亮
This commit is contained in:
@@ -169,7 +169,7 @@ class CodeView : AppCompatMultiAutoCompleteTextView {
|
||||
}
|
||||
|
||||
private fun highlight(editable: Editable): Editable {
|
||||
if (editable.isEmpty()) return editable
|
||||
if (editable.isEmpty() || editable.length > 1024) return editable
|
||||
try {
|
||||
clearSpans(editable)
|
||||
highlightErrorLines(editable)
|
||||
|
||||
Reference in New Issue
Block a user