We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 088a64f commit a44ea64Copy full SHA for a44ea64
src/renderer/components/ft-shaka-video-player/ft-shaka-video-player.js
@@ -2283,6 +2283,9 @@ export default defineComponent({
2283
changeVolume(-0.05)
2284
break
2285
case KeyboardShortcuts.VIDEO_PLAYER.PLAYBACK.SMALL_REWIND:
2286
+ if (event.shiftKey) {
2287
+ break
2288
+ }
2289
event.preventDefault()
2290
if (canChapterJump(event, 'previous')) {
2291
// Jump to the previous chapter
@@ -2294,6 +2297,9 @@ export default defineComponent({
2294
2297
}
2295
2298
2296
2299
case KeyboardShortcuts.VIDEO_PLAYER.PLAYBACK.SMALL_FAST_FORWARD:
2300
2301
2302
2303
2304
if (canChapterJump(event, 'next')) {
2305
// Jump to the next chapter
0 commit comments