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>2015-06-21 05:52:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-21 05:52:37 +0300
commit8be4d76204bb8621d3215eea8a46ea6eb7c31477 (patch)
treec97243658e54a0037ecfae8bcf935fe36b70f783 /source/blender/editors/mesh/editmesh_tools.c
parent9ddb624a883c4fd6d09a23c746c17115dba033b0 (diff)
Change defaults for planar-face tool
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index b47e1d54ed5..7c5e857fe32 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -1342,9 +1342,8 @@ void MESH_OT_face_make_planar(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
/* props */
- RNA_def_float(ot->srna, "factor", 0.5f, -10.0f, 10.0f, "Factor", "", 0.0f, 1.0f);
- RNA_def_int(ot->srna, "repeat", 1, 1, 200,
- "Number of iterations to flatten faces", "", 1, 200);
+ RNA_def_float(ot->srna, "factor", 1.0f, -10.0f, 10.0f, "Factor", "", 0.0f, 1.0f);
+ RNA_def_int(ot->srna, "repeat", 1, 1, 200, "Iterations", "", 1, 200);
}