[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60472] trunk/blender/source/blender/ editors/transform/transform_conversions.c: fix bug with vector handles in the graph editor when transforming 2 selected points of a bezt , the unselected handle wouldn' t have its value restored on transform cancel.

Campbell Barton ideasman42 at gmail.com
Tue Oct 1 10:30:46 CEST 2013


Revision: 60472
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60472
Author:   campbellbarton
Date:     2013-10-01 08:30:46 +0000 (Tue, 01 Oct 2013)
Log Message:
-----------
fix bug with vector handles in the graph editor when transforming 2 selected points of a bezt, the unselected handle wouldn't have its value restored on transform cancel.

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	2013-10-01 08:27:02 UTC (rev 60471)
+++ trunk/blender/source/blender/editors/transform/transform_conversions.c	2013-10-01 08:30:46 UTC (rev 60472)
@@ -3891,7 +3891,7 @@
 					}
 					
 					/* if handles were not selected, store their selection status */
-					if (!(sel1) && !(sel3)) {
+					if (!(sel1) || !(sel3)) {
 						if (hdata == NULL)
 							hdata = initTransDataCurveHandles(td, bezt);
 					}




More information about the Bf-blender-cvs mailing list