diff --git a/src/shared/utils/hotkeys.ts b/src/shared/utils/hotkeys.ts index 01b4bf90b..4e51006b6 100644 --- a/src/shared/utils/hotkeys.ts +++ b/src/shared/utils/hotkeys.ts @@ -33,5 +33,5 @@ export const withPhysicalKeys = (hotkeys: HotkeyItem[]): HotkeyItem[] => hotkeys.map(([hotkey, handler, options]) => [ toPhysicalHotkey(hotkey), handler, - { ...options, usePhysicalKeys: true }, + { ...options, preventDefault: true, usePhysicalKeys: true }, ]);