Fix T61919: Rename "Smooth Vertex" -> "Smooth Vertices"

This commit is contained in:
Jacques Lucke 2019-02-25 11:12:12 +01:00
parent b80ff7e2f1
commit 1419399f03
Notes: blender-bot 2023-02-14 09:36:46 +01:00
Referenced by issue #61919, Smooth Vertex feature is shown as "Smooth Vertices" in vertex menu
1 changed files with 4 additions and 4 deletions

View File

@ -2133,7 +2133,7 @@ void MESH_OT_normals_make_consistent(wmOperatorType *ot)
/** \} */
/* -------------------------------------------------------------------- */
/** \name Smooth Vertex Operator
/** \name Smooth Vertices Operator
* \{ */
static int edbm_do_smooth_vertex_exec(bContext *C, wmOperator *op)
@ -2218,7 +2218,7 @@ static int edbm_do_smooth_vertex_exec(bContext *C, wmOperator *op)
void MESH_OT_vertices_smooth(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Smooth Vertex";
ot->name = "Smooth Vertices";
ot->description = "Flatten angles of selected vertices";
ot->idname = "MESH_OT_vertices_smooth";
@ -2242,7 +2242,7 @@ void MESH_OT_vertices_smooth(wmOperatorType *ot)
/** \} */
/* -------------------------------------------------------------------- */
/** \name Laplacian Vertex Smooth Operator
/** \name Laplacian Smooth Vertices Operator
* \{ */
static int edbm_do_smooth_laplacian_vertex_exec(bContext *C, wmOperator *op)
@ -2339,7 +2339,7 @@ static int edbm_do_smooth_laplacian_vertex_exec(bContext *C, wmOperator *op)
void MESH_OT_vertices_smooth_laplacian(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Laplacian Smooth Vertex";
ot->name = "Laplacian Smooth Vertices";
ot->description = "Laplacian smooth of selected vertices";
ot->idname = "MESH_OT_vertices_smooth_laplacian";