fix large edit timeline width
This commit is contained in:
parent
e12ea159e3
commit
ebf508914f
1 changed files with 1 additions and 1 deletions
|
@ -934,7 +934,7 @@ pandora.getLargeClipTimelineURL = function(item, inPoint, outPoint, type, callba
|
|||
pandora.getLargeEditTimelineURL = function(edit, type, i, callback) {
|
||||
var clips = [],
|
||||
timelineIn = i * 60,
|
||||
timelineOut = Math.min((i + 1) * 60, Math.floor(edit.duration)),
|
||||
timelineOut = Math.min((i + 1) * 60, edit.duration),
|
||||
fps = 25,
|
||||
width = (timelineOut - timelineIn) * fps,
|
||||
height = 64,
|
||||
|
|
Loading…
Reference in a new issue