From e75ef3551e853efdf22e03b4215c5c3b25d88baf Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 2 Dec 2010 02:03:30 +0000 Subject: Adding some descriptions for animation-related operators that were missing them. --- source/blender/editors/animation/anim_channels_edit.c | 1 + source/blender/editors/animation/anim_ops.c | 3 +++ source/blender/editors/animation/keyframing.c | 1 + 3 files changed, 5 insertions(+) (limited to 'source') diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c index 739940ccdad..ccc87a6ccd4 100644 --- a/source/blender/editors/animation/anim_channels_edit.c +++ b/source/blender/editors/animation/anim_channels_edit.c @@ -1024,6 +1024,7 @@ void ANIM_OT_channels_move (wmOperatorType *ot) /* identifiers */ ot->name= "Move Channels"; ot->idname= "ANIM_OT_channels_move"; + ot->description = "Rearrange selected animation channels"; /* api callbacks */ ot->exec= animchannels_rearrange_exec; diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c index 9b367481ef2..ba5a53e6d7a 100644 --- a/source/blender/editors/animation/anim_ops.c +++ b/source/blender/editors/animation/anim_ops.c @@ -211,6 +211,7 @@ void ANIM_OT_previewrange_set(wmOperatorType *ot) /* identifiers */ ot->name= "Set Preview Range"; ot->idname= "ANIM_OT_previewrange_set"; + ot->description= "Interactively define frame range used for playback"; /* api callbacks */ ot->invoke= WM_border_select_invoke; @@ -257,6 +258,7 @@ void ANIM_OT_previewrange_clear(wmOperatorType *ot) /* identifiers */ ot->name= "Clear Preview Range"; ot->idname= "ANIM_OT_previewrange_clear"; + ot->description= "Clear Preview Range"; /* api callbacks */ ot->exec= previewrange_clear_exec; @@ -324,6 +326,7 @@ void ANIM_OT_time_toggle(wmOperatorType *ot) /* identifiers */ ot->name= "Toggle Frames/Seconds"; ot->idname= "ANIM_OT_time_toggle"; + ot->description= "Toggle whether timing is displayed in frames or seconds for active timeline view"; /* api callbacks */ ot->exec= toggle_time_exec; diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index 1216894e973..492d3a5f663 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -1177,6 +1177,7 @@ void ANIM_OT_keyframe_insert_menu (wmOperatorType *ot) /* identifiers */ ot->name= "Insert Keyframe Menu"; ot->idname= "ANIM_OT_keyframe_insert_menu"; + ot->description= "Insert Keyframes for specified Keying Set, with menu of available Keying Sets if undefined"; /* callbacks */ ot->invoke= insert_key_menu_invoke; -- cgit v1.2.3