From db719c32ad5c59f013d60f75a56bedb6d55869a2 Mon Sep 17 00:00:00 2001 From: Alexander-Ger-Reich <50119493+Alexander-Ger-Reich@users.noreply.github.com> Date: Sun, 28 Sep 2025 13:18:11 +0200 Subject: [PATCH] Update virtual-keyboard.tsx --- web/src/pages/desktop/keyboard/virtual-keyboard.tsx | 2 ++ 1 file changed, 2 insertions(+) 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); }