fixed clips not showing their first frames

This commit is contained in:
itsmattkc
2019-04-06 00:12:16 +11:00
parent 3fb51f8c0a
commit 5f5535bb11
+1 -1
View File
@@ -84,7 +84,7 @@ ClipPtr Clip::copy(Track* s) {
bool Clip::IsActiveAt(long timecode)
{
return enabled()
&& timeline_in(true) < timecode
&& timeline_in(true) <= timecode
&& timeline_out(true) > timecode
&& timecode - timeline_in(true) + clip_in(true) < media_length()
&& !track()->IsEffectivelyMuted();