From b96180ec1763b29bdda4acd6cf79275058bcbde3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 12 Feb 2009 03:39:56 +0000 Subject: * Added description string to operator types, should be set along with ot->idname when defining ops. * User interface uses this as a tooltip when NULL or "" is given. * Python doc generation includes this description * Python defined ops take the description as an argument. * NULL check to image_ops.c, was crashing on exit when there was an image open. --- source/blender/editors/space_sequencer/sequencer_add.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/editors/space_sequencer') diff --git a/source/blender/editors/space_sequencer/sequencer_add.c b/source/blender/editors/space_sequencer/sequencer_add.c index 5ab149ff6ca..c91972ec4f3 100644 --- a/source/blender/editors/space_sequencer/sequencer_add.c +++ b/source/blender/editors/space_sequencer/sequencer_add.c @@ -213,6 +213,7 @@ void SEQUENCER_OT_add_scene_strip(struct wmOperatorType *ot) /* identifiers */ ot->name= "Add Scene Strip"; ot->idname= "SEQUENCER_OT_add_scene_strip"; + ot->description= "Add a strip to the sequencer using a blender scene as a source"; /* api callbacks */ ot->invoke= sequencer_add_scene_strip_invoke; @@ -300,6 +301,7 @@ void SEQUENCER_OT_add_movie_strip(struct wmOperatorType *ot) /* identifiers */ ot->name= "Add Movie Strip"; ot->idname= "SEQUENCER_OT_add_movie_strip"; + ot->description= "Add a movie strip to the sequencer"; /* api callbacks */ ot->invoke= sequencer_add_movie_strip_invoke; @@ -400,6 +402,7 @@ void SEQUENCER_OT_add_sound_strip(struct wmOperatorType *ot) /* identifiers */ ot->name= "Add Sound Strip"; ot->idname= "SEQUENCER_OT_add_sound_strip"; + ot->description= "Add a sound strip to the sequencer"; /* api callbacks */ ot->invoke= sequencer_add_sound_strip_invoke; @@ -492,6 +495,7 @@ void SEQUENCER_OT_add_image_strip(struct wmOperatorType *ot) /* identifiers */ ot->name= "Add Image Strip"; ot->idname= "SEQUENCER_OT_add_image_strip"; + ot->description= "Add an image or image sequence to the sequencer"; /* api callbacks */ ot->invoke= sequencer_add_image_strip_invoke; @@ -623,6 +627,7 @@ void SEQUENCER_OT_add_effect_strip(struct wmOperatorType *ot) /* identifiers */ ot->name= "Add Effect Strip"; ot->idname= "SEQUENCER_OT_add_effect_strip"; + ot->description= "Add an effect to the sequencer, most are applied ontop of existing strips"; /* api callbacks */ ot->invoke= sequencer_add_effect_strip_invoke; -- cgit v1.2.3