[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [48304] trunk/blender/source/blender/ editors/transform/transform_conversions.c: fix for checking wrong flag with removing mask shape keys doubles on the dope sheet .

Campbell Barton ideasman42 at gmail.com
Tue Jun 26 10:25:36 CEST 2012


Revision: 48304
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=48304
Author:   campbellbarton
Date:     2012-06-26 08:25:17 +0000 (Tue, 26 Jun 2012)
Log Message:
-----------
fix for checking wrong flag with removing mask shape keys doubles on the dope sheet.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/transform/transform_conversions.c

Modified: trunk/blender/source/blender/editors/transform/transform_conversions.c
===================================================================
--- trunk/blender/source/blender/editors/transform/transform_conversions.c	2012-06-26 07:44:59 UTC (rev 48303)
+++ trunk/blender/source/blender/editors/transform/transform_conversions.c	2012-06-26 08:25:17 UTC (rev 48304)
@@ -2819,7 +2819,7 @@
 			short added = 0;
 			masklay_shape_new = masklay_shape->next;
 
-			if (masklay_shape->flag & GP_FRAME_SELECT) {
+			if (masklay_shape->flag & MASK_SHAPE_SELECT) {
 				BLI_remlink(&masklay->splines_shapes, masklay_shape);
 
 				/* find place to add them in buffer




More information about the Bf-blender-cvs mailing list