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:
authorAlexander Gavrilov <angavrilov@gmail.com>2019-01-07 17:33:47 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2019-01-07 17:35:51 +0300
commit43a2a73fdba0aed5b349ecfbb7a88251b8130e3c (patch)
tree64c55579bc17f035bb5ba1dfc4e4023e55a85e17 /source/blender/editors/animation/anim_channels_edit.c
parent299ff7dcd1383f5141f5eba3c04c447d5072f705 (diff)
Fix missing updates when muting/soloing/reordering NLA tracks.
Diffstat (limited to 'source/blender/editors/animation/anim_channels_edit.c')
-rw-r--r--source/blender/editors/animation/anim_channels_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c
index 26de5c3afc8..2d1c30734d9 100644
--- a/source/blender/editors/animation/anim_channels_edit.c
+++ b/source/blender/editors/animation/anim_channels_edit.c
@@ -1355,6 +1355,7 @@ static int animchannels_rearrange_exec(bContext *C, wmOperator *op)
switch (ac.datatype) {
case ANIMCONT_NLA: /* NLA-tracks only */
rearrange_nla_channels(&ac, adt, mode);
+ DEG_id_tag_update(ale->id, ID_RECALC_ANIMATION | ID_RECALC_COPY_ON_WRITE);
break;
case ANIMCONT_DRIVERS: /* Drivers list only */