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:
authorCampbell Barton <ideasman42@gmail.com>2018-10-17 08:14:58 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-17 08:17:00 +0300
commit7ce387b1cd4581961ee4cc9db2e23b00cc9ad9d9 (patch)
treeacaaa8c27fb37154c11c8507f08a0e8aeef6466a /source/blender/makesrna/intern/rna_access.c
parent8ecec995ed96746b3f8a39342c0fe3d4d91f5e2e (diff)
RNA: disable notifiers from property updates
This was re-enabled because it made copy-on-write bugs hard to track down. Since copy-on-write implementation has been simplified this isn't a problem anymore.
Diffstat (limited to 'source/blender/makesrna/intern/rna_access.c')
-rw-r--r--source/blender/makesrna/intern/rna_access.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index cb1453fd0bf..a105e205a2e 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -2070,7 +2070,7 @@ static void rna_property_update(bContext *C, Main *bmain, Scene *scene, PointerR
prop->update(bmain, scene, ptr);
}
-#if 1
+#if 0
/* TODO(campbell): Should eventually be replaced entirely by message bus (below)
* for now keep since COW, bugs are hard to track when we have other missing updates. */
if (prop->noteflag) {