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
path: root/source
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2013-10-15 19:34:14 +0400
committerDalai Felinto <dfelinto@gmail.com>2013-10-15 19:34:14 +0400
commit70efa7f1aa43d3f35b614a94c493e89d51272d42 (patch)
treeee72b75145f56b1a26d8715fcc87d9067c339351 /source
parentdc46febec83fce671898251dcd69a283c73c4551 (diff)
renaming "Beautify Fill" to "Beautify Faces"
changing the ot->name only, not the ot->idname (to avoid breaking scripts) The tool requires the selection to be fill previously, the original name was confusing if we consider we have "Fill" with the "Beauty" option. Discussed with Bastien Montagne and Brecht van Lommel.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 9e5782c12f2..5c9858fee58 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -3124,7 +3124,7 @@ static int edbm_beautify_fill_exec(bContext *C, wmOperator *op)
void MESH_OT_beautify_fill(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Beautify Fill";
+ ot->name = "Beautify Faces";
ot->idname = "MESH_OT_beautify_fill";
ot->description = "Rearrange some faces to try to get less degenerated geometry";