diff --git a/web/src/pages/desktop/keyboard/virtual-keyboard.tsx b/web/src/pages/desktop/keyboard/virtual-keyboard.tsx index 5a586a9..76838d8 100644 --- a/web/src/pages/desktop/keyboard/virtual-keyboard.tsx +++ b/web/src/pages/desktop/keyboard/virtual-keyboard.tsx @@ -134,6 +134,8 @@ export const VirtualKeyboard = () => { if (base === 'KeyZ') return KeyboardCodes.get('KeyY'); if (base === 'KeyY') return KeyboardCodes.get('KeyZ'); + if (base === 'IntlBackslash') return KeyboardCodes.get('IntlBackslash_qwertz'); + // all other labels use their own code return KeyboardCodes.get(base); }