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:
authorOve Murberg Henriksen <sorayasilvermoon@hotmail.com>2012-12-16 00:32:32 +0400
committerOve Murberg Henriksen <sorayasilvermoon@hotmail.com>2012-12-16 00:32:32 +0400
commit0ac1424264248a260ffc77a1b0febe1ee46331fe (patch)
tree3d1d293afb3287b1b74242c878ab4e59dd9e523f /source/blender/editors/object
parent114459e7f68f97cf16748445d432a1b2e314f177 (diff)
Bugfix: [#33513] Transfer weights mixing up.
Removal of this line fixed the bug. But! I suspect it opens up for an excaption. I will try to identify the exception and handle it in a different way.
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_vgroup.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_vgroup.c b/source/blender/editors/object/object_vgroup.c
index 846e2acd9f2..a0a27a565ee 100644
--- a/source/blender/editors/object/object_vgroup.c
+++ b/source/blender/editors/object/object_vgroup.c
@@ -467,7 +467,6 @@ static int ed_vgroup_transfer_weight(Object *ob_dst, Object *ob_src, bDeformGrou
/* Create new and overwrite vertex group on destination without data.*/
if (!defgroup_find_name(ob_dst, dg_src->name)) {
- ED_vgroup_delete(ob_dst, defgroup_find_name(ob_dst, dg_src->name));
ED_vgroup_add_name(ob_dst, dg_src->name);
}