allow clips to start from the beginning of the video

This commit is contained in:
Ren Tatsumoto 2020-09-06 15:58:47 +03:00
parent c55328e025
commit 315ee57d9c

View file

@ -340,7 +340,7 @@ function Timings:reset()
end
function Timings:validate()
return self['start'] > 0 and self['start'] < self['end']
return self['start'] >= 0 and self['start'] < self['end']
end
------------------------------------------------------------