[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28904] trunk/blender/source/blender: Bugfix: #22385: Shift-click in NLA does not do 'extend' select

Joshua Leung aligorith at gmail.com
Fri May 21 15:02:00 CEST 2010


Revision: 28904
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28904
Author:   aligorith
Date:     2010-05-21 15:01:18 +0200 (Fri, 21 May 2010)

Log Message:
-----------
Bugfix: #22385: Shift-click in NLA does not do 'extend' select

Caused by typo in selection flags code.

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/anim.c
    trunk/blender/source/blender/editors/space_nla/nla_select.c

Modified: trunk/blender/source/blender/blenkernel/intern/anim.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/anim.c	2010-05-21 12:17:34 UTC (rev 28903)
+++ trunk/blender/source/blender/blenkernel/intern/anim.c	2010-05-21 13:01:18 UTC (rev 28904)
@@ -256,6 +256,7 @@
  * Optimisations currently used here play tricks with the depsgraph in order to try and 
  * evaluate as few objects as strictly necessary to get nicer performance under standard
  * production conditions. For those people who really need the accurate version, 
+ * disable the ifdef (i.e. 1 -> 0) and comment out the call to motionpaths_calc_optimise_depsgraph()
  */
 
 /* tweak the object ordering to trick depsgraph into making MotionPath calculations run faster */

Modified: trunk/blender/source/blender/editors/space_nla/nla_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_nla/nla_select.c	2010-05-21 12:17:34 UTC (rev 28903)
+++ trunk/blender/source/blender/editors/space_nla/nla_select.c	2010-05-21 13:01:18 UTC (rev 28904)
@@ -70,7 +70,7 @@
 			break;
 			
 		case SELECT_INVERT:
-			return ACHANNEL_SETFLAG_TOGGLE;
+			return ACHANNEL_SETFLAG_INVERT;
 			break;
 			
 		case SELECT_ADD:





More information about the Bf-blender-cvs mailing list