From df95a7c84c1df1f4c39a5c7854fd335717af4ee8 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Fri, 10 Oct 2025 12:39:37 +0200 Subject: [PATCH] fix: fit view to content shortcut overrides typing the F letter everywhere --- src/hooks/useGlobalShortcuts.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hooks/useGlobalShortcuts.ts b/src/hooks/useGlobalShortcuts.ts index 15575b7..45d5c86 100644 --- a/src/hooks/useGlobalShortcuts.ts +++ b/src/hooks/useGlobalShortcuts.ts @@ -167,6 +167,8 @@ export function useGlobalShortcuts(options: UseGlobalShortcutsOptions = {}) { id: "fit-view", description: "Fit View to Content", key: "f", + ctrl: true, + shift: true, handler: () => options.onFitView?.(), category: "View", enabled: !!options.onFitView,