From d56fd6d4cef0230665e0acf299dce4d400a7461d Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 20 Feb 2009 20:43:22 +0000 Subject: [PATCH] 2.5: Fix build temporarily, seems there was a file missing in the graph properties panel commit. Ton, please check. --- source/blender/editors/space_graph/graph_ops.c | 4 ++-- source/blender/editors/space_graph/space_graph.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/space_graph/graph_ops.c b/source/blender/editors/space_graph/graph_ops.c index f9900306c53..f539d6023d2 100644 --- a/source/blender/editors/space_graph/graph_ops.c +++ b/source/blender/editors/space_graph/graph_ops.c @@ -99,7 +99,7 @@ void graphedit_operatortypes(void) WM_operatortype_append(GRAPHEDIT_OT_view_togglehandles); WM_operatortype_append(GRAPHEDIT_OT_set_previewrange); WM_operatortype_append(GRAPHEDIT_OT_view_all); - WM_operatortype_append(GRAPHEDIT_OT_properties); + // XXX file is not in svn: WM_operatortype_append(GRAPHEDIT_OT_properties); /* keyframes */ /* selection */ @@ -202,7 +202,7 @@ void graphedit_keymap(wmWindowManager *wm) /* keymap for all regions */ keymap= WM_keymap_listbase(wm, "GraphEdit Generic", SPACE_IPO, 0); - WM_keymap_add_item(keymap, "GRAPHEDIT_OT_properties", NKEY, KM_PRESS, 0, 0); + // XXX file is not in svn: WM_keymap_add_item(keymap, "GRAPHEDIT_OT_properties", NKEY, KM_PRESS, 0, 0); /* channels */ /* Channels are not directly handled by the Graph Editor module, but are inherited from the Animation module. diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c index 11922a2b383..2035453025d 100644 --- a/source/blender/editors/space_graph/space_graph.c +++ b/source/blender/editors/space_graph/space_graph.c @@ -354,7 +354,7 @@ static void graph_buttons_area_draw(const bContext *C, ARegion *ar) /* set view2d view matrix for scrolling (without scrollers) */ UI_view2d_view_ortho(C, &ar->v2d); - graph_region_buttons(C, ar); + // XXX file is not in svn: graph_region_buttons(C, ar); /* restore view matrix? */ UI_view2d_view_restore(C);