From b28a24091facf64c93b5eee89d6595f32354545b Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 27 Feb 2015 17:06:44 +1300 Subject: Action Editor: Added "Push Down" operator to send the current action on to the NLA Stack This commit exposes the "Push Down" button/functionality found in the NLA Editor to the Action Editor, so that actions can be added NLA Stack from here too. The main point of this for now is to make the whole layered-animation workflow nicer more efficient, but not requiring the second editor be visible in common cases. It also conveniently sets things up for the next few changes (already hinted at here)... --- source/blender/editors/space_action/action_ops.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/editors/space_action/action_ops.c') diff --git a/source/blender/editors/space_action/action_ops.c b/source/blender/editors/space_action/action_ops.c index 0fbacefa8e3..76b08012c56 100644 --- a/source/blender/editors/space_action/action_ops.c +++ b/source/blender/editors/space_action/action_ops.c @@ -77,7 +77,9 @@ void action_operatortypes(void) WM_operatortype_append(ACTION_OT_keyframe_insert); WM_operatortype_append(ACTION_OT_copy); WM_operatortype_append(ACTION_OT_paste); + WM_operatortype_append(ACTION_OT_new); + WM_operatortype_append(ACTION_OT_push_down); WM_operatortype_append(ACTION_OT_previewrange_set); WM_operatortype_append(ACTION_OT_view_all); -- cgit v1.2.3