We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92e51fc commit e999f11Copy full SHA for e999f11
modules/gdscript/editor/gdscript_highlighter.cpp
@@ -701,7 +701,9 @@ void GDScriptSyntaxHighlighter::_update_cache() {
701
List<StringName> types;
702
ClassDB::get_class_list(&types);
703
for (const StringName &E : types) {
704
- class_names[E] = types_color;
+ if (ClassDB::is_class_exposed(E)) {
705
+ class_names[E] = types_color;
706
+ }
707
}
708
709
/* User types. */
0 commit comments