Fix T62589: Particle system Instance Collection option fails to set a user for a linked collection.

Forgot to tag properly RNA property in rB439437fa3a44.
This commit is contained in:
Bastien Montagne 2019-03-17 16:00:52 +01:00
parent 0a25cea2cf
commit 94507a7fa7
Notes: blender-bot 2023-02-14 03:21:30 +01:00
Referenced by issue #62589, Particle system Instance Collection option fails to set a user for a linked collection
1 changed files with 1 additions and 1 deletions

View File

@ -3005,7 +3005,7 @@ static void rna_def_particle_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "instance_collection", PROP_POINTER, PROP_NONE);
RNA_def_property_pointer_sdna(prop, NULL, "instance_collection");
RNA_def_property_struct_type(prop, "Collection");
RNA_def_property_flag(prop, PROP_EDITABLE);
RNA_def_property_flag(prop, PROP_EDITABLE | PROP_ID_REFCOUNT);
RNA_def_property_ui_text(prop, "Dupli Collection", "Show Objects in this collection in place of particles");
RNA_def_property_update(prop, 0, "rna_Particle_redo_count");