[Bf-blender-cvs] [b339535] master: Graph Editor: Added buttons for editing handle types on the active keyframe (from NKEY region)

Joshua Leung noreply at git.blender.org
Mon Apr 28 02:48:48 CEST 2014


Commit: b33953593b5dabeb60a3065db82c3dc35ba2e0f9
Author: Joshua Leung
Date:   Mon Apr 28 03:19:17 2014 +1200
https://developer.blender.org/rBb33953593b5dabeb60a3065db82c3dc35ba2e0f9

Graph Editor: Added buttons for editing handle types on the active keyframe (from NKEY region)

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

M	source/blender/editors/space_graph/graph_buttons.c

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

diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c
index df2da0e..d139ec0 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 {




More information about the Bf-blender-cvs mailing list