Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-02-20 23:43:22 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-02-20 23:43:22 +0300
commitd56fd6d4cef0230665e0acf299dce4d400a7461d (patch)
tree9150b5ecbb4b4e24c4290c7c35fa401d7b0f1348
parentebd2b1212de7bfc1fabb3af114e954beefd0798c (diff)
2.5: Fix build temporarily, seems there was a file missing
in the graph properties panel commit. Ton, please check.
-rw-r--r--source/blender/editors/space_graph/graph_ops.c4
-rw-r--r--source/blender/editors/space_graph/space_graph.c2
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);