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:
authorTon Roosendaal <ton@blender.org>2011-03-04 19:02:42 +0300
committerTon Roosendaal <ton@blender.org>2011-03-04 19:02:42 +0300
commit7006038b02c797a5e485518b8137ea2738290528 (patch)
tree3c06460706d2ea546d0c13233adbb7c29d43e8f5 /source/blender/editors/include/ED_anim_api.h
parent9834aea0318089f5cbf526c3b7997b795dcdd920 (diff)
Bugfix #26317
Shift+D in graph editor was an operator calling internally an operator. Better is to make it a Macro, then Undos and Esc work nicely. Note for API users: the operator "graph.duplicate" will now just copy the selection and not run transform. Nicer too :)
Diffstat (limited to 'source/blender/editors/include/ED_anim_api.h')
-rw-r--r--source/blender/editors/include/ED_anim_api.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h
index d19d3549fad..67acccd94e2 100644
--- a/source/blender/editors/include/ED_anim_api.h
+++ b/source/blender/editors/include/ED_anim_api.h
@@ -585,6 +585,10 @@ void ED_keymap_animchannels(struct wmKeyConfig *keyconf);
/* generic time editing */
void ED_operatortypes_anim(void);
void ED_keymap_anim(struct wmKeyConfig *keyconf);
+
+ /* space_graph */
+void ED_operatormacros_graph(void);
+
/* ************************************************ */