Ported: Fix highlight color for class attributes that are also keywords.

- lucasvanmol
749d0c708c
This commit is contained in:
Relintai 2023-02-21 13:14:09 +01:00
parent e42c604bc3
commit 8eca52fc76

View File

@ -275,19 +275,22 @@ Dictionary GDScriptSyntaxHighlighter::_get_line_syntax_highlighting(int p_line)
col = keywords[word];
} else if (member_keywords.has(word)) {
col = member_keywords[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 (col != Color()) {
in_keyword = true;
keyword_color = col;
}
}
}