diff options
author | daniel-mcclintock <13973653+daniel-mcclintock@users.noreply.github.com> | 2021-09-06 23:10:06 +1000 |
---|---|---|
committer | daniel-mcclintock <13973653+daniel-mcclintock@users.noreply.github.com> | 2021-09-06 23:10:06 +1000 |
commit | 8a8c172b93982bc530f85a45743fe8e44be5bf0e (patch) | |
tree | 3a128ad75362c747721608eff03ffd9af3cc24d9 | |
parent | e5c6c773e99e3f9aae4ac8a804f392416c871285 (diff) |
Fix crash during completion lookback
-rw-r--r-- | scene/gui/code_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/code_edit.cpp b/scene/gui/code_edit.cpp index 5f3ab18cca..955410f890 100644 --- a/scene/gui/code_edit.cpp +++ b/scene/gui/code_edit.cpp @@ -2744,7 +2744,7 @@ void CodeEdit::_filter_code_completion_candidates_impl() { /* If we have a space, previous word might be a keyword. eg "func |". */ } else if (cofs > 0 && line[cofs - 1] == ' ') { int ofs = cofs - 1; - while (ofs >= 0 && line[ofs] == ' ') { + while (ofs > 0 && line[ofs] == ' ') { ofs--; } prev_is_word = _is_char(line[ofs]); |