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:
authorSybren A. Stüvel <sybren@blender.org>2020-04-21 14:24:47 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-04-21 14:24:47 +0300
commit9528fa2c46e151d290b282fc83ea512881b8a328 (patch)
tree80e8b491b35abe4d6c4a772c6ffe48f52a69f90f
parent81d29a9f617267ac6acc37f4f5ff43c7eca6b4df (diff)
parent6f598ecc1af3d6e94d5a03097b20618452425859 (diff)
Merge remote-tracking branch 'origin/blender-v2.83-release'
-rw-r--r--source/blender/editors/animation/anim_channels_edit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c
index 302b1318bba..a7ca84eb6c6 100644
--- a/source/blender/editors/animation/anim_channels_edit.c
+++ b/source/blender/editors/animation/anim_channels_edit.c
@@ -2272,7 +2272,8 @@ static int animchannels_clean_empty_exec(bContext *C, wmOperator *UNUSED(op))
}
/* get animdata blocks */
- filter = (ANIMFILTER_DATA_VISIBLE | ANIMFILTER_LIST_VISIBLE | ANIMFILTER_ANIMDATA);
+ filter = (ANIMFILTER_DATA_VISIBLE | ANIMFILTER_LIST_VISIBLE | ANIMFILTER_ANIMDATA |
+ ANIMFILTER_NODUPLIS);
ANIM_animdata_filter(&ac, &anim_data, filter, ac.data, ac.datatype);
for (ale = anim_data.first; ale; ale = ale->next) {