]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix 0-9 player hotkey conflict with web browser
authorChocobozzz <me@florianbigard.com>
Fri, 20 May 2022 08:06:01 +0000 (10:06 +0200)
committerChocobozzz <me@florianbigard.com>
Fri, 20 May 2022 08:06:01 +0000 (10:06 +0200)
client/src/assets/player/shared/hotkeys/peertube-hotkeys-plugin.ts

index 5920450bdb5d121c0dbed4d5195d0d9af6ed22f1..8255245b51d8746323b9235a9448509e785192a3 100644 (file)
@@ -160,7 +160,7 @@ class PeerTubeHotkeysPlugin extends Plugin {
     // 0-9 key handlers
     for (let i = 0; i < 10; i++) {
       handlers.push({
-        accept: e => e.key === i + '',
+        accept: e => e.key === i + '' && !e.ctrlKey, // If using ctrl key, it's a web browser hotkey
         cb: e => {
           e.preventDefault()