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:
authorCampbell Barton <ideasman42@gmail.com>2018-09-10 09:14:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-10 09:14:26 +0300
commita4d126cac655aed5e3e8caff645109e781f441b2 (patch)
tree1b736bb4eb219afa98970ed161712ecec98db543
parent549ac6ddebef8113f8a84a945a40280f6fe9d565 (diff)
Cleanup: use title caps
-rw-r--r--source/blender/editors/mesh/editmesh_polybuild.c12
-rw-r--r--source/blender/editors/mesh/mesh_ops.c4
2 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/mesh/editmesh_polybuild.c b/source/blender/editors/mesh/editmesh_polybuild.c
index adf5802cdcf..e818659e61a 100644
--- a/source/blender/editors/mesh/editmesh_polybuild.c
+++ b/source/blender/editors/mesh/editmesh_polybuild.c
@@ -165,7 +165,7 @@ static bool edbm_preselect_or_active_init_viewcontext(
/** \} */
/* -------------------------------------------------------------------- */
-/** \name Face At Cursor
+/** \name Face at Cursor
* \{ */
static int edbm_polybuild_face_at_cursor_invoke(
@@ -306,7 +306,7 @@ static int edbm_polybuild_face_at_cursor_invoke(
void MESH_OT_polybuild_face_at_cursor(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Poly Build Face At Cursor";
+ ot->name = "Poly Build Face at Cursor";
ot->idname = "MESH_OT_polybuild_face_at_cursor";
ot->description = "";
@@ -324,7 +324,7 @@ void MESH_OT_polybuild_face_at_cursor(wmOperatorType *ot)
/** \} */
/* -------------------------------------------------------------------- */
-/** \name Split At Cursor
+/** \name Split at Cursor
* \{ */
static int edbm_polybuild_split_at_cursor_invoke(
@@ -388,7 +388,7 @@ static int edbm_polybuild_split_at_cursor_invoke(
void MESH_OT_polybuild_split_at_cursor(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Poly Build Split At Cursor";
+ ot->name = "Poly Build Split at Cursor";
ot->idname = "MESH_OT_polybuild_split_at_cursor";
ot->description = "";
@@ -407,7 +407,7 @@ void MESH_OT_polybuild_split_at_cursor(wmOperatorType *ot)
/* -------------------------------------------------------------------- */
-/** \name Dissolve At Cursor
+/** \name Dissolve at Cursor
*
* \{ */
@@ -476,7 +476,7 @@ static int edbm_polybuild_dissolve_at_cursor_invoke(
void MESH_OT_polybuild_dissolve_at_cursor(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Poly Build Dissolve At Cursor";
+ ot->name = "Poly Build Dissolve at Cursor";
ot->idname = "MESH_OT_polybuild_dissolve_at_cursor";
ot->description = "";
diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c
index d1a3aec9551..875cd68da7b 100644
--- a/source/blender/editors/mesh/mesh_ops.c
+++ b/source/blender/editors/mesh/mesh_ops.c
@@ -306,7 +306,7 @@ void ED_operatormacros_mesh(void)
ot = WM_operatortype_append_macro(
- "MESH_OT_polybuild_face_at_cursor_move", "Face At Cursor Move", "",
+ "MESH_OT_polybuild_face_at_cursor_move", "Face at Cursor Move", "",
OPTYPE_UNDO | OPTYPE_REGISTER);
WM_operatortype_macro_define(ot, "MESH_OT_polybuild_face_at_cursor");
otmacro = WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate");
@@ -314,7 +314,7 @@ void ED_operatormacros_mesh(void)
RNA_boolean_set(otmacro->ptr, "mirror", false);
ot = WM_operatortype_append_macro(
- "MESH_OT_polybuild_split_at_cursor_move", "Split At Cursor Move", "",
+ "MESH_OT_polybuild_split_at_cursor_move", "Split at Cursor Move", "",
OPTYPE_UNDO | OPTYPE_REGISTER);
WM_operatortype_macro_define(ot, "MESH_OT_polybuild_split_at_cursor");
otmacro = WM_operatortype_macro_define(ot, "TRANSFORM_OT_translate");