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:
authorJoshua Leung <aligorith@gmail.com>2009-06-09 16:28:10 +0400
committerJoshua Leung <aligorith@gmail.com>2009-06-09 16:28:10 +0400
commitca5ff43b1f3efa555b1e52d190c5a97332e01e85 (patch)
treed529e5994135d42dc388cc1693e01b95f9a3b923 /source/blender/editors/space_nla/nla_select.c
parent096e2f0b5ab370fcc01a265ccf77eb71a2f03a43 (diff)
NLA SoC: Improved anim-channel filtering flags for NLA so that channels don't need to be checked to be NLA-Tracks before being used.
Diffstat (limited to 'source/blender/editors/space_nla/nla_select.c')
-rw-r--r--source/blender/editors/space_nla/nla_select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_nla/nla_select.c b/source/blender/editors/space_nla/nla_select.c
index 463479c0909..730814dc562 100644
--- a/source/blender/editors/space_nla/nla_select.c
+++ b/source/blender/editors/space_nla/nla_select.c
@@ -120,8 +120,8 @@ static void deselect_nla_strips (bAnimContext *ac, short test, short sel)
int filter;
short smode;
- /* determine type-based settings - curvesonly eliminates all the unnecessary channels... */
- filter= (ANIMFILTER_VISIBLE|ANIMFILTER_CURVESONLY);
+ /* determine type-based settings */
+ filter= (ANIMFILTER_VISIBLE | ANIMFILTER_NLATRACKS);
/* filter data */
ANIM_animdata_filter(ac, &anim_data, filter, ac->data, ac->datatype);