From a7ba142ad926764303001d914d25849deba660c1 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Wed, 16 Aug 2023 22:55:35 +1000 Subject: [PATCH] feat(ui): set min zoom on nodes to 0.1 --- invokeai/frontend/web/src/features/nodes/components/Flow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/nodes/components/Flow.tsx b/invokeai/frontend/web/src/features/nodes/components/Flow.tsx index 5b33bf4a9c..3290a65054 100644 --- a/invokeai/frontend/web/src/features/nodes/components/Flow.tsx +++ b/invokeai/frontend/web/src/features/nodes/components/Flow.tsx @@ -137,7 +137,7 @@ export const Flow = () => { connectionLineComponent={CustomConnectionLine} onSelectionChange={handleSelectionChange} isValidConnection={isValidConnection} - minZoom={0.2} + minZoom={0.1} snapToGrid={shouldSnapToGrid} snapGrid={[25, 25]} connectionRadius={30}