Added a few descriptions that were missing.

This is a little bit of todo item:
[#24814] Operators which have no decription

Kent
This commit is contained in:
Kent Mein 2010-12-08 21:56:50 +00:00
parent 5d2966283b
commit e0ab0bc401
5 changed files with 8 additions and 2 deletions

@ -199,6 +199,7 @@ void LOGIC_OT_links_cut(wmOperatorType *ot)
ot->name= "Cut links"; ot->name= "Cut links";
ot->idname= "LOGIC_OT_links_cut"; ot->idname= "LOGIC_OT_links_cut";
ot->description= "Remove logic brick connections";
ot->invoke= WM_gesture_lines_invoke; ot->invoke= WM_gesture_lines_invoke;
ot->modal= WM_gesture_lines_modal; ot->modal= WM_gesture_lines_modal;

@ -492,6 +492,7 @@ void NLA_OT_properties(wmOperatorType *ot)
{ {
ot->name= "Properties"; ot->name= "Properties";
ot->idname= "NLA_OT_properties"; ot->idname= "NLA_OT_properties";
ot->description= "Toggle display properties panel";
ot->exec= nla_properties; ot->exec= nla_properties;
ot->poll= ED_operator_nla_active; ot->poll= ED_operator_nla_active;

@ -1638,6 +1638,7 @@ void NLA_OT_fmodifier_add (wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Add F-Modifier"; ot->name= "Add F-Modifier";
ot->idname= "NLA_OT_fmodifier_add"; ot->idname= "NLA_OT_fmodifier_add";
ot->description= "Add F-Modifier of the secified type to the selected NLA-Strips";
/* api callbacks */ /* api callbacks */
ot->invoke= nla_fmodifier_add_invoke; ot->invoke= nla_fmodifier_add_invoke;
@ -1701,7 +1702,7 @@ void NLA_OT_fmodifier_copy (wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Copy F-Modifiers"; ot->name= "Copy F-Modifiers";
ot->idname= "NLA_OT_fmodifier_copy"; ot->idname= "NLA_OT_fmodifier_copy";
ot->description= "Copy the F-Modifier(s) of the active NLA-Strip."; ot->description= "Copy the F-Modifier(s) of the active NLA-Strip";
/* api callbacks */ /* api callbacks */
ot->exec= nla_fmodifier_copy_exec; ot->exec= nla_fmodifier_copy_exec;

@ -182,8 +182,9 @@ static int nlaedit_deselectall_exec(bContext *C, wmOperator *op)
void NLA_OT_select_all_toggle (wmOperatorType *ot) void NLA_OT_select_all_toggle (wmOperatorType *ot)
{ {
/* identifiers */ /* identifiers */
ot->name= "Select All"; ot->name= "Select or Deselect All";
ot->idname= "NLA_OT_select_all_toggle"; ot->idname= "NLA_OT_select_all_toggle";
ot->description= "(De)Select all NLA-Strips";
/* api callbacks */ /* api callbacks */
ot->exec= nlaedit_deselectall_exec; ot->exec= nlaedit_deselectall_exec;
@ -321,6 +322,7 @@ void NLA_OT_select_border(wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Border Select"; ot->name= "Border Select";
ot->idname= "NLA_OT_select_border"; ot->idname= "NLA_OT_select_border";
ot->description= "Use box selection to grab NLA-Strips";
/* api callbacks */ /* api callbacks */
ot->invoke= WM_border_select_invoke; ot->invoke= WM_border_select_invoke;

@ -223,6 +223,7 @@ void NODE_OT_select_border(wmOperatorType *ot)
/* identifiers */ /* identifiers */
ot->name= "Border Select"; ot->name= "Border Select";
ot->idname= "NODE_OT_select_border"; ot->idname= "NODE_OT_select_border";
ot->description= "Use box selection to select nodes";
/* api callbacks */ /* api callbacks */
ot->invoke= node_border_select_invoke; ot->invoke= node_border_select_invoke;