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:
authorJoshua Leung <aligorith@gmail.com>2009-04-13 04:46:32 +0400
committerJoshua Leung <aligorith@gmail.com>2009-04-13 04:46:32 +0400
commitf0fea321291e1dfc1bc070a4546f719c57b24a87 (patch)
treecdda56bd016abb4bc7b689cb7a32d20064332f0e /source/blender/editors/space_graph/graph_edit.c
parenta71016a1a340b623727012c366de600b71348b68 (diff)
2.5 - Assorted tweaks in Graph Editor
Diffstat (limited to 'source/blender/editors/space_graph/graph_edit.c')
-rw-r--r--source/blender/editors/space_graph/graph_edit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index 18cb5a88c26..3aea32d64e7 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -336,6 +336,7 @@ void GRAPHEDIT_OT_ghost_curves_create (wmOperatorType *ot)
/* identifiers */
ot->name= "Create Ghost Curves";
ot->idname= "GRAPHEDIT_OT_ghost_curves_create";
+ ot->description= "Create snapshot (Ghosts) of selected F-Curves as background aid for active Graph Editor.";
/* api callbacks */
ot->exec= graphkeys_create_ghostcurves_exec;
@@ -378,6 +379,7 @@ void GRAPHEDIT_OT_ghost_curves_clear (wmOperatorType *ot)
/* identifiers */
ot->name= "Create Ghost Curves";
ot->idname= "GRAPHEDIT_OT_ghost_curves_clear";
+ ot->description= "Clear F-Curve snapshots (Ghosts) for active Graph Editor.";
/* api callbacks */
ot->exec= graphkeys_clear_ghostcurves_exec;