Rename 'Extend Vertex' to be clear it operates on many vertices

This commit is contained in:
Campbell Barton 2014-06-14 16:15:38 +10:00
parent 788f4858d7
commit 29e8c46e30
2 changed files with 2 additions and 2 deletions

@ -228,7 +228,7 @@ found_edge:
void MESH_OT_rip_edge(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Extend Vertex";
ot->name = "Extend Vertices";
ot->idname = "MESH_OT_rip_edge";
ot->description = "Extend vertices along the edge closest to the cursor";

@ -240,7 +240,7 @@ void ED_operatormacros_mesh(void)
RNA_enum_set(otmacro->ptr, "proportional", 0);
RNA_boolean_set(otmacro->ptr, "mirror", false);
ot = WM_operatortype_append_macro("MESH_OT_rip_edge_move", "Rip Edge", "Rip polygons and move the result",
ot = WM_operatortype_append_macro("MESH_OT_rip_edge_move", "Extend Vertices", "Extend vertices and move the result",
OPTYPE_UNDO | OPTYPE_REGISTER);
WM_operatortype_macro_define(ot, "MESH_OT_rip_edge");
otmacro = WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate");