From b33953593b5dabeb60a3065db82c3dc35ba2e0f9 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 28 Apr 2014 03:19:17 +1200 Subject: Graph Editor: Added buttons for editing handle types on the active keyframe (from NKEY region) --- source/blender/editors/space_graph/graph_buttons.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'source/blender/editors/space_graph') diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c index df2da0e78ed..d139ec0bfa2 100644 --- a/source/blender/editors/space_graph/graph_buttons.c +++ b/source/blender/editors/space_graph/graph_buttons.c @@ -342,6 +342,11 @@ static void graph_panel_key_properties(const bContext *C, Panel *pa) &bezt_ptr, "handle_left", 1, 0, 0, -1, -1, NULL); uiButSetFunc(but, graphedit_activekey_handles_cb, fcu, bezt); uiButSetUnitType(but, unit); + + /* XXX: with label? */ + but = uiDefButR(block, MENU, B_REDR, NULL, 0, 0, UI_UNIT_X, UI_UNIT_Y, + &bezt_ptr, "handle_left_type", 0, 0, 0, -1, -1, "Type of left handle"); + uiButSetFunc(but, graphedit_activekey_handles_cb, fcu, bezt); } /* next handle - only if current is Bezier interpolation */ @@ -356,6 +361,11 @@ static void graph_panel_key_properties(const bContext *C, Panel *pa) &bezt_ptr, "handle_right", 1, 0, 0, -1, -1, NULL); uiButSetFunc(but, graphedit_activekey_handles_cb, fcu, bezt); uiButSetUnitType(but, unit); + + /* XXX: with label? */ + but = uiDefButR(block, MENU, B_REDR, NULL, 0, 0, UI_UNIT_X, UI_UNIT_Y, + &bezt_ptr, "handle_right_type", 0, 0, 0, -1, -1, "Type of right handle"); + uiButSetFunc(but, graphedit_activekey_handles_cb, fcu, bezt); } } else { -- cgit v1.2.3