Bugfix #26977 + Patch by Harley Acheson

Using search for operators showed ambigious names like "Duplicate" or "Delete".
Default names should give at least a descriptive label. In case operators
are collected in a group name-shortening should be handled separaly.
This commit is contained in:
2011-04-19 11:17:29 +00:00
parent a8185f4cc8
commit c4debb1c64
11 changed files with 12 additions and 12 deletions

View File

@@ -1754,7 +1754,7 @@ static int mesh_duplicate_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(ev
void MESH_OT_duplicate(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Duplicate";
ot->name= "Duplicate Mesh";
ot->description= "Duplicate selected vertices, edges or faces";
ot->idname= "MESH_OT_duplicate";