Fix T97720: Fix meta strip shows incorrect mute state.

Caused by only checking mute state for meta strip itself and not the
children.
This commit is contained in:
Richard Antalik 2022-05-03 10:41:44 +02:00
parent 20f819d708
commit 2ea9d1fccf
Notes: blender-bot 2023-02-14 02:27:56 +01:00
Referenced by issue #98021, Regression: Blender crashes when using the VSE which contains a scene on the timeline that contains audio
Referenced by issue #97720, COSMETIC meta strip displays incorrect muted channel graphic when parent channel is muted
1 changed files with 1 additions and 1 deletions

View File

@ -631,7 +631,7 @@ static void drawmeta_contents(Scene *scene,
color3ubv_from_seq(scene, seq, show_strip_color_tag, col);
}
if (SEQ_render_is_muted(channels, seqm) || SEQ_render_is_muted(channels, seq)) {
if (SEQ_render_is_muted(channels, seqm) || SEQ_render_is_muted(&seqm->channels, seq)) {
col[3] = 64;
}
else {