Merge branch 'master' of https://github.com/okamstudio/godot
This commit is contained in:
commit
63033aa646
75 changed files with 3541 additions and 504 deletions
|
|
@ -709,7 +709,7 @@ void TextEdit::_notification(int p_what) {
|
|||
if (in_region==-1 && !in_keyword && is_char && !prev_is_char) {
|
||||
|
||||
int to=j;
|
||||
while(_is_text_char(str[to]) && to<str.length())
|
||||
while(to<str.length() && _is_text_char(str[to]))
|
||||
to++;
|
||||
|
||||
uint32_t hash = String::hash(&str[j],to-j);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue