diff --git a/apps/builder/src/features/graph/components/Graph.tsx b/apps/builder/src/features/graph/components/Graph.tsx index fc98be3ee..c742d8846 100644 --- a/apps/builder/src/features/graph/components/Graph.tsx +++ b/apps/builder/src/features/graph/components/Graph.tsx @@ -339,7 +339,8 @@ export const Graph = ({ }; useEventListener("keydown", (e) => { - if (e.key === " ") setIsDraggingGraph(true); + if (e.key === " " && !e.metaKey && !e.ctrlKey && !e.altKey && !e.shiftKey) + setIsDraggingGraph(true); }); useEventListener("keyup", (e) => { if (e.key === " ") {