[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [25434] trunk/blender/source/blender/ editors: sequencer fcurve anim filtering: sequence strips fcurves in meta' s were showing up in the main view.

Campbell Barton ideasman42 at gmail.com
Thu Dec 17 12:40:12 CET 2009


Revision: 25434
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=25434
Author:   campbellbarton
Date:     2009-12-17 12:40:12 +0100 (Thu, 17 Dec 2009)

Log Message:
-----------
sequencer fcurve anim filtering: sequence strips fcurves in meta's were showing up in the main view. mossing notifier for border select.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/animation/anim_filter.c
    trunk/blender/source/blender/editors/space_sequencer/sequencer_select.c

Modified: trunk/blender/source/blender/editors/animation/anim_filter.c
===================================================================
--- trunk/blender/source/blender/editors/animation/anim_filter.c	2009-12-17 11:16:28 UTC (rev 25433)
+++ trunk/blender/source/blender/editors/animation/anim_filter.c	2009-12-17 11:40:12 UTC (rev 25434)
@@ -792,7 +792,7 @@
 			if (seq_name) MEM_freeN(seq_name);
 			
 			/* can only add this F-Curve if it is selected */
-			if ((seq) && (seq->flag & SELECT)==0)
+			if (seq==NULL || (seq->flag & SELECT)==0)
 				return 1;
 		}
 	}

Modified: trunk/blender/source/blender/editors/space_sequencer/sequencer_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_sequencer/sequencer_select.c	2009-12-17 11:16:28 UTC (rev 25433)
+++ trunk/blender/source/blender/editors/space_sequencer/sequencer_select.c	2009-12-17 11:40:12 UTC (rev 25434)
@@ -872,6 +872,8 @@
 		}
 	}
 
+	WM_event_add_notifier(C, NC_SCENE|ND_SEQUENCER_SELECT, scene);
+
 	return OPERATOR_FINISHED;
 } 
 





More information about the Bf-blender-cvs mailing list