[TextServer] Fix structured text parser for GDScript comments.
This commit is contained in:
parent
7c383767a2
commit
1829bc3663
@ -2071,8 +2071,8 @@ TypedArray<Vector3i> TextServer::parse_structured_text(StructuredTextParser p_pa
|
|||||||
if (prev != i) {
|
if (prev != i) {
|
||||||
ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
|
ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
|
||||||
}
|
}
|
||||||
prev = i + 1;
|
prev = p_text.length();
|
||||||
ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
|
ret.push_back(Vector3i(i, p_text.length(), TextServer::DIRECTION_AUTO));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user