Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <b.mont29@gmail.com>2020-02-19 18:07:21 +0300
committerBastien Montagne <b.mont29@gmail.com>2020-02-19 18:10:57 +0300
commite317e9f6c75c238f4750db1bf80a9a3e8b2754f6 (patch)
treebf76228cf740fc6cdaadf0a4f3948125406709e2 /source/blender/makesrna/RNA_types.h
parent8c5e36d0a94568ddc990bed1137b3e5a149fa3c4 (diff)
Fix T72751: Timeline crash from overridden scene.
Depsgraph RNA pointer would generate infinite loop in override comparisons. Depsgraph pointer should never be considered here anyway, this is purely runtime data.
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 6a60f09919b..243c3f049c7 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -292,6 +292,8 @@ typedef enum PropertyOverrideFlag {
/**
* Forbid usage of this property in comparison (& hence override) code.
* Useful e.g. for collections of data like mesh's geometry, particles, etc.
+ * Also for runtime data that should never be considered as part of actual Blend data (e.g.
+ * dpesgraph from ViewLayers...).
*/
PROPOVERRIDE_NO_COMPARISON = (1 << 1),