Fix (unreported) collections not being append-reusable.

Related to T97289, appending collections would never re-use already
appended one, since the flag was not set for this ID type...
This commit is contained in:
Bastien Montagne 2022-04-13 10:27:32 +02:00
parent a63982a65b
commit da66c0519f
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ IDTypeInfo IDType_ID_GR = {
.name = "Collection",
.name_plural = "collections",
.translation_context = BLT_I18NCONTEXT_ID_COLLECTION,
.flags = IDTYPE_FLAGS_NO_ANIMDATA,
.flags = IDTYPE_FLAGS_NO_ANIMDATA | IDTYPE_FLAGS_APPEND_IS_REUSABLE,
.asset_type_info = NULL,
.init_data = collection_init_data,