1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

Merge pull request #58 from rxnk/main

Fix keyboard navigation conflicting while pausing playback.
This commit is contained in:
Captain Jack Sparrow 2024-06-20 21:16:51 -04:00 committed by GitHub
commit 5be4f1458d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -118,10 +118,17 @@ export function KeyboardEvents() {
// Utils // Utils
if (keyL === "f") dataRef.current.display?.toggleFullscreen(); if (keyL === "f") dataRef.current.display?.toggleFullscreen();
if (k === " " || keyL === "k") if (k === " " || keyL === "k") {
dataRef.current.display?.[ if (
dataRef.current.mediaPlaying.isPaused ? "play" : "pause" evt.target &&
](); (evt.target as HTMLInputElement).nodeName === "BUTTON"
) {
return;
}
const action = dataRef.current.mediaPlaying.isPaused ? "play" : "pause";
dataRef.current.display?.[action]();
}
if (k === "Escape") dataRef.current.router.close(); if (k === "Escape") dataRef.current.router.close();
// captions // captions