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>2011-05-03 08:09:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-03 08:09:56 +0400
commitb0cd0a0577016c668e3105ad17a6c3890543e74a (patch)
treee1ddfcc3fdd4e9e0b43ace2631aa5f2b6b26bad7
parent03734f5c58f374cd016b318685a00a16a219defa (diff)
auto-merge was incorrectly subtracting the doubles removed from the meshes total face count, remove doubles handles this.
-rw-r--r--source/blender/editors/mesh/editmesh_mods.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_mods.c b/source/blender/editors/mesh/editmesh_mods.c
index 1ae6fb0bd98..5ad4f8f274f 100644
--- a/source/blender/editors/mesh/editmesh_mods.c
+++ b/source/blender/editors/mesh/editmesh_mods.c
@@ -146,7 +146,6 @@ void EM_automerge(Scene *scene, Object *obedit, int update)
len = removedoublesflag(em, 1, 1, scene->toolsettings->doublimit);
if (len) {
- em->totvert -= len; /* saves doing a countall */
if (update) {
DAG_id_tag_update(&me->id, 0);
}