Fix T53800: Bad data editing during DEG evaluation?

Remain convinced that it should not be possible for undo code to run in
parallel with DEG eval... But for now, this whould prevent static
override code to dive into this collection.
This commit is contained in:
Bastien Montagne 2018-03-26 10:41:31 +02:00
parent 0c49d83b49
commit 13f80a152a
Notes: blender-bot 2023-02-14 06:15:52 +01:00
Referenced by issue #53800, Bad data editing by  during DEG evaluation?
1 changed files with 1 additions and 0 deletions

View File

@ -2835,6 +2835,7 @@ static void rna_def_object(BlenderRNA *brna)
NULL,
NULL);
RNA_def_property_struct_type(prop, "LayerCollectionSettings");
RNA_def_property_flag(prop, PROP_NO_COMPARISON); /* XXX see T53800. */
RNA_def_property_ui_text(prop, "Collection Settings",
"Engine specific render settings to be overridden by collections");