1
0
Fork 0
forked from 0x2620/oxjs

fix #2319 (Player View: When navigating with cursor keys, timeline may get out of sync with video)

This commit is contained in:
rolux 2014-02-17 12:07:34 +00:00
commit 6a84785b5a
2 changed files with 13 additions and 1 deletions

View file

@ -171,7 +171,7 @@ Ox.VideoPlayerPanel = function(options, self) {
},
key_p: playInToOut,
key_right: function() {
movePositionBy(self.options.fps);
movePositionBy(1 / self.options.fps);
},
key_shift_down: function() {
movePositionBy(self.options.duration);