Adding some descriptions for animation-related operators that were missing them.

This commit is contained in:
Joshua Leung 2010-12-02 02:03:30 +00:00
parent b31594c4ab
commit e75ef3551e
3 changed files with 5 additions and 0 deletions

@ -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;

@ -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;

@ -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;