Merge branch 'main' into enhance/fitView

This commit is contained in:
peterkogo
2025-03-25 13:21:11 +01:00
23 changed files with 274 additions and 74 deletions
-7
View File
@@ -106,13 +106,6 @@ export function useKeyPress(
};
const upHandler = (event: KeyboardEvent) => {
const preventAction =
(!modifierPressed.current || (modifierPressed.current && !options.actInsideInputWithModifier)) &&
isInputDOMNode(event);
if (preventAction) {
return false;
}
const keyOrCode = useKeyOrCode(event.code, keysToWatch);
if (isMatchingKey(keyCodes, pressedKeys.current, true)) {