[Bf-blender-cvs] [86b81d25ea1] blender2.8: Missed from merge commit

Campbell Barton noreply at git.blender.org
Tue Sep 26 06:44:43 CEST 2017


Commit: 86b81d25ea1ed696adc82ec39088e24f7a6422f0
Author: Campbell Barton
Date:   Tue Sep 26 14:57:14 2017 +1000
Branches: blender2.8
https://developer.blender.org/rB86b81d25ea1ed696adc82ec39088e24f7a6422f0

Missed from merge commit

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

M	source/blender/editors/animation/drivers.c

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

diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c
index 8c3d4661b32..1a3d82e5002 100644
--- a/source/blender/editors/animation/drivers.c
+++ b/source/blender/editors/animation/drivers.c
@@ -48,6 +48,7 @@
 #include "BKE_context.h"
 #include "BKE_report.h"
 
+#include "DEG_depsgraph.h"
 #include "DEG_depsgraph_build.h"
 
 #include "ED_keyframing.h"
@@ -1031,8 +1032,8 @@ static int paste_driver_button_exec(bContext *C, wmOperator *op)
 			
 			UI_context_update_anim_flag(C);
 			
-			DAG_relations_tag_update(CTX_data_main(C));
-			DAG_id_tag_update(ptr.id.data, OB_RECALC_OB | OB_RECALC_DATA);
+			DEG_relations_tag_update(CTX_data_main(C));
+			DEG_id_tag_update(ptr.id.data, OB_RECALC_OB | OB_RECALC_DATA);
 			
 			WM_event_add_notifier(C, NC_ANIMATION | ND_KEYFRAME_PROP, NULL);  // XXX



More information about the Bf-blender-cvs mailing list