[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33667] trunk/blender/source/blender/ editors/animation/anim_channels_edit.c: Bugfix #21724

Ton Roosendaal ton at blender.org
Tue Dec 14 20:25:49 CET 2010


Revision: 33667
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33667
Author:   ton
Date:     2010-12-14 20:25:49 +0100 (Tue, 14 Dec 2010)

Log Message:
-----------
Bugfix #21724

Graph Editor: "make selected channels visible" VKEY didn't 
make unselected channels invisble.

What is left is that the active channel remains visible still.
Not sure if that's by design, for Joshua to answer.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/animation/anim_channels_edit.c

Modified: trunk/blender/source/blender/editors/animation/anim_channels_edit.c
===================================================================
--- trunk/blender/source/blender/editors/animation/anim_channels_edit.c	2010-12-14 18:19:32 UTC (rev 33666)
+++ trunk/blender/source/blender/editors/animation/anim_channels_edit.c	2010-12-14 19:25:49 UTC (rev 33667)
@@ -1173,7 +1173,7 @@
 	BLI_freelistN(&anim_data);
 	
 	/* make all the selected channels visible */
-	filter= (ANIMFILTER_VISIBLE | ANIMFILTER_SEL | ANIMFILTER_NODUPLIS);
+	filter= (ANIMFILTER_SEL | ANIMFILTER_NODUPLIS);
 	ANIM_animdata_filter(&ac, &anim_data, filter, ac.data, ac.datatype);
 	
 	for (ale= anim_data.first; ale; ale= ale->next) {





More information about the Bf-blender-cvs mailing list