Merge pull request #45347 from lucasvanmol/patch-1

[3.2] Fix highlight color for class attributes that are also keywords
This commit is contained in:
Rémi Verschelde 2021-01-26 15:56:29 +01:00 committed by GitHub
commit 21746ce714
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -191,21 +191,23 @@ Map<int, TextEdit::HighlighterInfo> GDScriptSyntaxHighlighter::_get_line_syntax_
col = text_editor->get_keyword_color(word);
} else if (text_editor->has_member_color(word)) {
col = text_editor->get_member_color(word);
}
if (col != Color()) {
for (int k = j - 1; k >= 0; k--) {
if (str[k] == '.') {
col = Color(); //member indexing not allowed
col = Color(); // keyword & member indexing not allowed
break;
} else if (str[k] > 32) {
break;
}
}
}
if (col != Color()) {
in_keyword = true;
keyword_color = col;
}
}
}
if (!in_function_name && in_word && !in_keyword) {