From 43a2a73fdba0aed5b349ecfbb7a88251b8130e3c Mon Sep 17 00:00:00 2001 From: Alexander Gavrilov Date: Mon, 7 Jan 2019 17:33:47 +0300 Subject: Fix missing updates when muting/soloing/reordering NLA tracks. --- source/blender/editors/animation/anim_channels_edit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/editors/animation/anim_channels_edit.c') 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 */ -- cgit v1.2.3