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:
authorCampbell Barton <ideasman42@gmail.com>2009-12-17 14:40:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-17 14:40:12 +0300
commit7a5c190820580342832e61b5cc6145ae50b29c4c (patch)
treed66ade19acfd3affa02db58fa95d53ce022317a5 /source/blender/editors/animation/anim_filter.c
parent88d72e796a388afe79d4dc8d4aed243a49ed1875 (diff)
sequencer fcurve anim filtering: sequence strips fcurves in meta's were showing up in the main view. mossing notifier for border select.
Diffstat (limited to 'source/blender/editors/animation/anim_filter.c')
-rw-r--r--source/blender/editors/animation/anim_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c
index 8ab2de8076e..2d9ab636642 100644
--- a/source/blender/editors/animation/anim_filter.c
+++ b/source/blender/editors/animation/anim_filter.c
@@ -792,7 +792,7 @@ static int skip_fcurve_selected_data(FCurve *fcu, ID *owner_id)
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;
}
}