Fix [#22337] Wrong operator descriptions

This commit is contained in:
Matt Ebb 2010-05-14 07:20:16 +00:00
parent 2798852903
commit 0524fc1df6
5 changed files with 8 additions and 9 deletions

@ -130,7 +130,7 @@ from bpy.props import *
class BakeAction(bpy.types.Operator): class BakeAction(bpy.types.Operator):
'''Add a torus mesh''' '''Bake animation to an Action'''
bl_idname = "nla.bake" bl_idname = "nla.bake"
bl_label = "Bake Action" bl_label = "Bake Action"
bl_options = {'REGISTER', 'UNDO'} bl_options = {'REGISTER', 'UNDO'}

@ -24,8 +24,7 @@ from bpy.props import *
class MESH_OT_delete_edgeloop(bpy.types.Operator): class MESH_OT_delete_edgeloop(bpy.types.Operator):
'''Export a single object as a stanford PLY with normals, '''Delete an edge loop by merging the faces on each side to a single face loop'''
colours and texture coordinates.'''
bl_idname = "mesh.delete_edgeloop" bl_idname = "mesh.delete_edgeloop"
bl_label = "Delete Edge Loop" bl_label = "Delete Edge Loop"

@ -1037,7 +1037,7 @@ void MATERIAL_OT_paste(wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Paste Material"; ot->name= "Paste Material";
ot->idname= "MATERIAL_OT_paste"; ot->idname= "MATERIAL_OT_paste";
ot->description="Copy the material settings and nodes"; ot->description="Paste the material settings and nodes";
/* api callbacks */ /* api callbacks */
ot->exec= paste_material_exec; ot->exec= paste_material_exec;

@ -605,7 +605,7 @@ void SEQUENCER_OT_select_more(wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Select More"; ot->name= "Select More";
ot->idname= "SEQUENCER_OT_select_more"; ot->idname= "SEQUENCER_OT_select_more";
ot->description="DOC_BROKEN"; ot->description="Select more strips adjacent to the current selection";
/* api callbacks */ /* api callbacks */
ot->exec= sequencer_select_more_exec; ot->exec= sequencer_select_more_exec;
@ -636,7 +636,7 @@ void SEQUENCER_OT_select_less(wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Select less"; ot->name= "Select less";
ot->idname= "SEQUENCER_OT_select_less"; ot->idname= "SEQUENCER_OT_select_less";
ot->description="DOC_BROKEN"; ot->description="Shrink the current selection of adjacent selected strips";
/* api callbacks */ /* api callbacks */
ot->exec= sequencer_select_less_exec; ot->exec= sequencer_select_less_exec;
@ -726,7 +726,7 @@ void SEQUENCER_OT_select_linked(wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Select linked"; ot->name= "Select linked";
ot->idname= "SEQUENCER_OT_select_linked"; ot->idname= "SEQUENCER_OT_select_linked";
ot->description="DOC_BROKEN"; ot->description="Select all strips adjacent to the current selection";
/* api callbacks */ /* api callbacks */
ot->exec= sequencer_select_linked_exec; ot->exec= sequencer_select_linked_exec;
@ -813,7 +813,7 @@ void SEQUENCER_OT_select_active_side(wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Select Active Side"; ot->name= "Select Active Side";
ot->idname= "SEQUENCER_OT_select_active_side"; ot->idname= "SEQUENCER_OT_select_active_side";
ot->description="DOC_BROKEN"; ot->description="Select strips on the nominated side of the active strip";
/* api callbacks */ /* api callbacks */
ot->exec= sequencer_select_active_side_exec; ot->exec= sequencer_select_active_side_exec;

@ -410,7 +410,7 @@ void UV_OT_minimize_stretch(wmOperatorType *ot)
ot->name= "Minimize Stretch"; ot->name= "Minimize Stretch";
ot->idname= "UV_OT_minimize_stretch"; ot->idname= "UV_OT_minimize_stretch";
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
ot->description="DOC_BROKEN"; ot->description="Reduce UV stretching by relaxing angles";
/* api callbacks */ /* api callbacks */
ot->exec= minimize_stretch_exec; ot->exec= minimize_stretch_exec;