Skip to content

Commit

Permalink
fix(FEC-11402): preview does not work - fix y position (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyBregman authored Jul 23, 2021
1 parent 1307b90 commit 2d79e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/thumbnail-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ThumbnailManager {
const duration = this._player.duration / thumbsSlices;
const thumbnailInfo = {
x: Math.floor(time / duration) * thumbsWidth,
y: thumbsHeight,
y: 0,
url: thumbsSprite,
height: thumbsHeight,
width: thumbsWidth
Expand Down

0 comments on commit 2d79e57

Please sign in to comment.