[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [26006] trunk/blender/source/blender/ editors/space_action/action_select.c: Ctrl+RMB select in the dope-sheet wasnt working, this nlabackup stuff isnt being done for select-all so not sure why its there , commented it out for now.

Campbell Barton ideasman42 at gmail.com
Thu Jan 14 21:48:25 CET 2010


Revision: 26006
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=26006
Author:   campbellbarton
Date:     2010-01-14 21:48:25 +0100 (Thu, 14 Jan 2010)

Log Message:
-----------
Ctrl+RMB select in the dope-sheet wasnt working, this nlabackup stuff isnt being done for select-all so not sure why its there, commented it out for now.
Aligorith, please check.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_action/action_select.c

Modified: trunk/blender/source/blender/editors/space_action/action_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_action/action_select.c	2010-01-14 19:53:26 UTC (rev 26005)
+++ trunk/blender/source/blender/editors/space_action/action_select.c	2010-01-14 20:48:25 UTC (rev 26006)
@@ -663,7 +663,8 @@
 	/* select keys on the side where most data occurs */
 	for (ale= anim_data.first; ale; ale= ale->next) {
 		AnimData *adt= ANIM_nla_mapping_get(ac, ale);
-		
+
+#if 0	// This does not work even in simple cases I tested - campbell
 		if (adt) {
 			ListBase nlabackup;
 
@@ -674,6 +675,7 @@
 		//else if (ale->type == ANIMTYPE_GPLAYER)
 		//	borderselect_gplayer_frames(ale->data, min, max, SELECT_ADD);
 		else
+#endif
 			ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, ok_cb, select_cb, NULL);
 	}
 	





More information about the Bf-blender-cvs mailing list