diff --git a/source/Ox.UI/js/Video/VideoEditor.js b/source/Ox.UI/js/Video/VideoEditor.js index d51a3bba..0a8f41c6 100644 --- a/source/Ox.UI/js/Video/VideoEditor.js +++ b/source/Ox.UI/js/Video/VideoEditor.js @@ -1172,7 +1172,7 @@ Ox.VideoEditor = function(options, self) { Ox.forEach(self.options.cuts, function(cut, i) { if (cut > self.options.position) { points = { - 'in': i ? self.options.cuts[i - 1] : 0, + 'in': i == 0 ? 0 : self.options.cuts[i - 1], out: cut - 1 / self.options.fps }; return false; // break