allow clips to start from the beginning of the video
This commit is contained in:
parent
c55328e025
commit
315ee57d9c
|
@ -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
|
||||
|
||||
------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue