Fix first value update
This commit is contained in:
parent
826f5358a1
commit
8870e1c75d
@ -3565,6 +3565,7 @@ bool GDScriptParser::export_annotations(const AnnotationNode *p_annotation, Node
|
|||||||
for (const KeyValue<StringName, int> &E : export_type.enum_values) {
|
for (const KeyValue<StringName, int> &E : export_type.enum_values) {
|
||||||
if (!first) {
|
if (!first) {
|
||||||
enum_hint_string += ",";
|
enum_hint_string += ",";
|
||||||
|
} else {
|
||||||
first = false;
|
first = false;
|
||||||
}
|
}
|
||||||
enum_hint_string += E.key.operator String().capitalize().xml_escape();
|
enum_hint_string += E.key.operator String().capitalize().xml_escape();
|
||||||
|
Loading…
Reference in New Issue
Block a user