[Bf-blender-cvs] [9b8d479e414] blender2.8: RNA: re-enable update notifier flags

Campbell Barton noreply at git.blender.org
Mon Nov 19 11:34:47 CET 2018


Commit: 9b8d479e41492ce59f6cbf614098304aa3a22e4f
Author: Campbell Barton
Date:   Mon Nov 19 21:00:14 2018 +1100
Branches: blender2.8
https://developer.blender.org/rB9b8d479e41492ce59f6cbf614098304aa3a22e4f

RNA: re-enable update notifier flags

This was causing too many missing updates and each need investigation
which won't happen before beta.

===================================================================

M	source/blender/makesrna/intern/rna_access.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index a0ceb6ce66a..cb6f62d35eb 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -2084,7 +2084,7 @@ static void rna_property_update(bContext *C, Main *bmain, Scene *scene, PointerR
 				prop->update(bmain, scene, ptr);
 		}
 
-#if 0
+#if 1
 		/* 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) {



More information about the Bf-blender-cvs mailing list