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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-07-08 18:27:57 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-07-09 10:59:34 +0300
commit516afd0162cd2e217ec50ce522f87317b73f0088 (patch)
tree1b6b7b80046f999f6953fd9010a0c52c90a53bf4 /source/blender/editors/animation/anim_filter.c
parentef5d0a927e11f3b6e64063033e64d4e808f3815e (diff)
Implement Movieclip filter for action editors
Allows to disable keyframes from movie clips in dopesheet. Reviewers: brecht Reviewed By: brecht Subscribers: sebastian_k Differential Revision: https://developer.blender.org/D5203
Diffstat (limited to 'source/blender/editors/animation/anim_filter.c')
-rw-r--r--source/blender/editors/animation/anim_filter.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c
index d71a7808f42..2d16ce30d31 100644
--- a/source/blender/editors/animation/anim_filter.c
+++ b/source/blender/editors/animation/anim_filter.c
@@ -3151,7 +3151,9 @@ static size_t animdata_filter_dopesheet(bAnimContext *ac,
}
/* movie clip's animation */
- items += animdata_filter_dopesheet_movieclips(ac, anim_data, ads, filter_mode);
+ if (!(ads->filterflag2 & ADS_FILTER_NOMOVIECLIPS) && !(ads->filterflag & ADS_FILTER_ONLYSEL)) {
+ items += animdata_filter_dopesheet_movieclips(ac, anim_data, ads, filter_mode);
+ }
/* Scene-linked animation - e.g. world, compositing nodes, scene anim
* (including sequencer currently). */