mirror of
https://github.com/godotengine/godot.git
synced 2025-01-25 20:12:34 -05:00
Merge pull request #29572 from qarmin/fix_text_edit_select
Fix TextEdit Select crash
This commit is contained in:
commit
867f38a626
1 changed files with 6 additions and 2 deletions
|
@ -4817,14 +4817,18 @@ void TextEdit::deselect() {
|
|||
|
||||
void TextEdit::select(int p_from_line, int p_from_column, int p_to_line, int p_to_column) {
|
||||
|
||||
if (p_from_line >= text.size())
|
||||
if (p_from_line < 0)
|
||||
p_from_line = 0;
|
||||
else if (p_from_line >= text.size())
|
||||
p_from_line = text.size() - 1;
|
||||
if (p_from_column >= text[p_from_line].length())
|
||||
p_from_column = text[p_from_line].length();
|
||||
if (p_from_column < 0)
|
||||
p_from_column = 0;
|
||||
|
||||
if (p_to_line >= text.size())
|
||||
if (p_to_line < 0)
|
||||
p_to_line = 0;
|
||||
else if (p_to_line >= text.size())
|
||||
p_to_line = text.size() - 1;
|
||||
if (p_to_column >= text[p_to_line].length())
|
||||
p_to_column = text[p_to_line].length();
|
||||
|
|
Loading…
Add table
Reference in a new issue