Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2010-12-14 22:25:49 +0300
committerTon Roosendaal <ton@blender.org>2010-12-14 22:25:49 +0300
commit7775a1a798dd6130140e82f97a1b5e0abea4b8ec (patch)
tree26ed1c24763bd0dc287a71b251b079ee62559a7a /source/blender/editors/animation
parent9ac68ad4abf2f4bb4fc92c292170a7cf6c29b319 (diff)
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.
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/anim_channels_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c
index ccc87a6ccd4..04cb5091f33 100644
--- a/source/blender/editors/animation/anim_channels_edit.c
+++ b/source/blender/editors/animation/anim_channels_edit.c
@@ -1173,7 +1173,7 @@ static int animchannels_visibility_set_exec(bContext *C, wmOperator *UNUSED(op))
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) {