From 315ee57d9c6a515d9a11f430f93cf41fbed026f1 Mon Sep 17 00:00:00 2001 From: Ren Tatsumoto Date: Sun, 6 Sep 2020 15:58:47 +0300 Subject: [PATCH] allow clips to start from the beginning of the video --- videoclip.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/videoclip.lua b/videoclip.lua index de00dfc..162a41c 100644 --- a/videoclip.lua +++ b/videoclip.lua @@ -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 ------------------------------------------------------------