fix timeline tile offset
This commit is contained in:
parent
88981fd836
commit
092f27ca19
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ Ox.SmallVideoTimelineImage = function(options, self) {
|
|||
firstTile = Math.floor(self.options['in'] / 60);
|
||||
lastTile = Math.floor(self.options.out / 60);
|
||||
tileHeight = 64;
|
||||
tileOffset = -Math.round(self.options['in'] % 60);
|
||||
tileOffset = -Math.round(self.options['in'] % 60 * 25);
|
||||
tileWidth = 1500;
|
||||
}
|
||||
$canvas = $('<canvas>').attr({
|
||||
|
|
Loading…
Reference in a new issue