Update virtual-keyboard.tsx

This commit is contained in:
Alexander-Ger-Reich
2025-09-28 13:18:11 +02:00
committed by GitHub
parent 340477a31f
commit db719c32ad

View File

@@ -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);
}