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

@ -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 {