Compare commits

..

1 Commits

Author SHA1 Message Date
Daniel Lorch c525fa1841
Merge 0c7d5aae4c into d79f359c43 2025-05-01 22:53:53 +00:00
1 changed files with 6 additions and 13 deletions

View File

@ -332,19 +332,12 @@ export default function WebRTCVideo() {
// Example: If altKey is true, keep all modifiers // Example: If altKey is true, keep all modifiers
// If altKey is false, filter out 0x04 (AltLeft) // If altKey is false, filter out 0x04 (AltLeft)
// //
// But intentionally do not filter out 0x40 (AltRight) to enable Alt Gr // Special case: Despite the Alt-Gr key being pressed, `altKey' on
// (Alt Graph) as a modifier. The altKey attribute is set to false on // the event `e' is set to `false'. This means we cannot detect if Alt-Gr
// key combinations involving the Alt Gr key, which means the modifier // is being pressed while the user e.g. presses the `2' key. Instead, we
// would otherwise be unintentionally removed from the filteredModifiers // we need to rely on keyUpHandler/keyDownHandler to toggle the state
// list. // for 0x40 (AltRight) and avoid filtering for this code here, so that we
// // can remember the state of the Alt-Gr modifier on subsequent key presses.
// For example, the KeyboardEvent for Alt Gr + 2 has the following structure:
// - altKey: false
// - code: "Digit2"
// - type: ["keydown"|"keyup"]
//
// Adding and removing 0x40 (AltRight) from and to the list of active
// modifiers is handled by keyUpHandler an keyDownHandler.
.filter( .filter(
modifier => modifier =>
altKey || altKey ||