1
0
Fork 0

Merge pull request #96512 from bruvzg/gds_base_stt

[TextServer] Fix structured text parser for GDScript comments.
This commit is contained in:
Rémi Verschelde 2024-09-03 11:44:12 +02:00
commit 8120e0324a
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 2 additions and 2 deletions

View File

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