[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [16545] trunk/blender/source/blender/src/ buttons_logic.c: BGE bug #17565 fixed: Constraint Actuator Location: GUI broken.

Benoit Bolsee benoit.bolsee at online.be
Mon Sep 15 23:37:27 CEST 2008


Revision: 16545
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=16545
Author:   ben2610
Date:     2008-09-15 23:37:27 +0200 (Mon, 15 Sep 2008)

Log Message:
-----------
BGE bug #17565 fixed: Constraint Actuator Location: GUI broken. Axis selection was not persistent, now it is.

Modified Paths:
--------------
    trunk/blender/source/blender/src/buttons_logic.c

Modified: trunk/blender/source/blender/src/buttons_logic.c
===================================================================
--- trunk/blender/source/blender/src/buttons_logic.c	2008-09-15 21:10:51 UTC (rev 16544)
+++ trunk/blender/source/blender/src/buttons_logic.c	2008-09-15 21:37:27 UTC (rev 16545)
@@ -2132,7 +2132,7 @@
 	/*  		str= "Limit %t|None %x0|Loc X %x1|Loc Y %x2|Loc Z %x4|Rot X %x8|Rot Y %x16|Rot Z %x32"; */
 	/*			coa->flag &= ~(63); */
 			str= "Limit %t|None %x0|Loc X %x1|Loc Y %x2|Loc Z %x4";
-			coa->flag &= ~(7);
+			coa->flag &= 7;
 			coa->time = 0;
 			uiDefButS(block, MENU, 1, str,		xco+10, yco-65, 70, 19, &coa->flag, 0.0, 0.0, 0, 0, "");
 		





More information about the Bf-blender-cvs mailing list