Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2019-02-25 13:12:12 +0300
committerJacques Lucke <mail@jlucke.com>2019-02-25 13:12:17 +0300
commit1419399f03235db56f0b18640755b117561c5efb (patch)
treebd2c8a7a90b82385093214a78621fda081abf8b8 /source/blender/editors/mesh
parentb80ff7e2f14ba2d575a4b7d6f8112622150db6e6 (diff)
Fix T61919: Rename "Smooth Vertex" -> "Smooth Vertices"
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index ae2abc58a0c..83366987c7a 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -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";