1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-04 19:21:46 +00:00

TextEdit - fix valid bounds in 'set_line'. Fixes #41967

This commit is contained in:
Dominik 'dreamsComeTrue' Jasiński
2020-10-17 17:56:48 +02:00
parent 5b6a22e275
commit 99c8a07919

View File

@@ -6406,7 +6406,7 @@ void TextEdit::set_tooltip_request_func(Object *p_obj, const StringName &p_funct
}
void TextEdit::set_line(int line, String new_text) {
if (line < 0 || line > text.size()) {
if (line < 0 || line >= text.size()) {
return;
}
_remove_text(line, 0, line, text[line].length());