nested sequence enhancements

This commit is contained in:
itsmattkc
2019-01-22 14:15:12 +11:00
parent b4b1b8f95c
commit 584b8670c0
4 changed files with 23 additions and 5 deletions
+2 -2
View File
@@ -169,7 +169,7 @@ GLuint compose_sequence(Viewer* viewer,
}
clip_is_active = true;
if (c->track >= 0) audio_track_count++;
} else if (c->open) {
} else if (c->finished_opening) {
close_clip(c, false);
}
} else {
@@ -181,7 +181,7 @@ GLuint compose_sequence(Viewer* viewer,
if (is_clip_active(c, playhead)) {
if (!c->open) open_clip(c, !rendering);
clip_is_active = true;
} else if (c->open) {
} else if (c->finished_opening) {
close_clip(c, false);
}
}