[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26864] trunk/blender/source/blender/ makesrna/intern/rna_access.c: Fix #20378: object modifier property drivers not updating.

Brecht Van Lommel brecht at blender.org
Sat Feb 13 13:16:33 CET 2010


Revision: 26864
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26864
Author:   blendix
Date:     2010-02-13 13:16:33 +0100 (Sat, 13 Feb 2010)

Log Message:
-----------
Fix #20378: object modifier property drivers not updating.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_access.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_access.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_access.c	2010-02-13 12:16:08 UTC (rev 26863)
+++ trunk/blender/source/blender/makesrna/intern/rna_access.c	2010-02-13 12:16:33 UTC (rev 26864)
@@ -1161,7 +1161,7 @@
 	else {
 		/* WARNING! This is so property drivers update the display!
 		 * not especially nice  */
-		DAG_id_flush_update(ptr->id.data, OB_RECALC_OB);
+		DAG_id_flush_update(ptr->id.data, OB_RECALC);
 		WM_main_add_notifier(NC_WINDOW, NULL);
 	}
 





More information about the Bf-blender-cvs mailing list