[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40820] trunk/blender/source/blender/ editors/sculpt_paint/paint_vertex.c: fix for fix

Campbell Barton ideasman42 at gmail.com
Thu Oct 6 06:09:49 CEST 2011


Revision: 40820
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40820
Author:   campbellbarton
Date:     2011-10-06 04:09:48 +0000 (Thu, 06 Oct 2011)
Log Message:
-----------
fix for fix

Modified Paths:
--------------
    trunk/blender/source/blender/editors/sculpt_paint/paint_vertex.c

Modified: trunk/blender/source/blender/editors/sculpt_paint/paint_vertex.c
===================================================================
--- trunk/blender/source/blender/editors/sculpt_paint/paint_vertex.c	2011-10-06 04:06:47 UTC (rev 40819)
+++ trunk/blender/source/blender/editors/sculpt_paint/paint_vertex.c	2011-10-06 04:09:48 UTC (rev 40820)
@@ -1609,7 +1609,6 @@
 	        (wpi->lock_flags == NULL || has_locked_group(dv, wpi->lock_flags) == FALSE))
 	{
 		wpaint_blend(wp, dw, uw, alpha, paintweight, wpi->do_flip, FALSE);
-		do_weight_paint_auto_normalize_all_groups(dv, wpi->vgroup_validmap, wpi->do_auto_normalize);
 
 		if(me->editflag & ME_EDIT_MIRROR_X) {	/* x mirror painting */
 			int index_mirr= mesh_get_x_mirror_vert(ob, index);
@@ -1625,7 +1624,7 @@
 		 * which has already been scaled down in relation to other weights,
 		 * then scales a second time [#26193]. Tricky multi-paint code doesn't
 		 * suffer from this problem - campbell */
-		do_weight_paint_auto_normalize_all_groups(dv_mirr, wpi->vgroup_validmap, wpi->do_auto_normalize);
+		do_weight_paint_auto_normalize_all_groups(dv, wpi->vgroup_validmap, wpi->do_auto_normalize);
 	}
 	else {
 		/* use locks and/or multipaint */




More information about the Bf-blender-cvs mailing list