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>2010-12-02 05:03:30 +0300
committerJoshua Leung <aligorith@gmail.com>2010-12-02 05:03:30 +0300
commite75ef3551e853efdf22e03b4215c5c3b25d88baf (patch)
treea0f180018aa8c53d5ca15f2225bbd78c39749212 /source/blender/editors/animation/anim_ops.c
parentb31594c4ab63b8e8675bcf2b4547cc92416db2b7 (diff)
Adding some descriptions for animation-related operators that were missing them.
Diffstat (limited to 'source/blender/editors/animation/anim_ops.c')
-rw-r--r--source/blender/editors/animation/anim_ops.c3
1 files changed, 3 insertions, 0 deletions
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;