diff options
| author | Thaddeus Crews <repiteo@outlook.com> | 2023-09-14 13:31:07 -0500 |
|---|---|---|
| committer | Thaddeus Crews <repiteo@outlook.com> | 2023-12-05 08:51:49 -0600 |
| commit | 5cf0d772bc9a48c807b2ac63fe75b29df4671ecc (patch) | |
| tree | 27587a6f2935b43caaa7b875fdd2d81dcb63b18e /modules/gdscript/editor/gdscript_highlighter.cpp | |
| parent | d76c1d0e516fedc535a2e394ab780cac79203477 (diff) | |
| download | redot-engine-5cf0d772bc9a48c807b2ac63fe75b29df4671ecc.tar.gz | |
Change container_element_type to vector container
Diffstat (limited to 'modules/gdscript/editor/gdscript_highlighter.cpp')
| -rw-r--r-- | modules/gdscript/editor/gdscript_highlighter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/editor/gdscript_highlighter.cpp b/modules/gdscript/editor/gdscript_highlighter.cpp index 8dbd262b22..3df07f9794 100644 --- a/modules/gdscript/editor/gdscript_highlighter.cpp +++ b/modules/gdscript/editor/gdscript_highlighter.cpp @@ -494,7 +494,7 @@ Dictionary GDScriptSyntaxHighlighter::_get_line_syntax_highlighting_impl(int p_l in_function_arg_dicts = 0; } - if (expect_type && (prev_is_char || str[j] == '=') && str[j] != '[' && str[j] != '.') { + if (expect_type && (prev_is_char || str[j] == '=') && str[j] != '[' && str[j] != ',' && str[j] != '.') { expect_type = false; } |
