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:
authorAlexander Pinzon <apinzonf@gmail.com>2012-06-21 22:34:56 +0400
committerAlexander Pinzon <apinzonf@gmail.com>2012-06-21 22:34:56 +0400
commitc6c57fd092a1b03170092ddcb1a07c8724684fe7 (patch)
treeb1e7b5d48b45bc5a05d00f442c3a5b473a109e2e /source/blender/editors/mesh/editmesh_tools.c
parent5392ef6158d44c2f753b521b2bf9f257f14dd94c (diff)
Small improvements in the code.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_tools.c')
-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 ce47a3ef7e2..394ac00ac9b 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -1607,7 +1607,7 @@ static int edbm_do_smooth_laplacian_vertex_exec(bContext *C, wmOperator *op)
float min_area = 0.00001f;
BMIter fiter;
BMFace *f;
-
+
/* Check if select faces are triangles */
BM_ITER_MESH (f, &fiter, em->bm, BM_FACES_OF_MESH) {
if (BM_elem_flag_test(f, BM_ELEM_SELECT)) {