Browse Source

Fix 0-9 player hotkey conflict with web browser

Chocobozzz 2 năm trước cách đây
mục cha
commit
1c8a9a1d22

+ 1 - 1
client/src/assets/player/shared/hotkeys/peertube-hotkeys-plugin.ts

@@ -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()