From 789cfa8e5c6f8e75239dcac03fd9713381725d4d Mon Sep 17 00:00:00 2001 From: JPPhoto Date: Tue, 5 May 2026 16:53:03 -0500 Subject: [PATCH 1/2] fix connector handle size --- .../nodes/components/flow/nodes/Connector/ConnectorNode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Connector/ConnectorNode.tsx b/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Connector/ConnectorNode.tsx index d86ca783a8b..bc6867a9b9c 100644 --- a/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Connector/ConnectorNode.tsx +++ b/invokeai/frontend/web/src/features/nodes/components/flow/nodes/Connector/ConnectorNode.tsx @@ -11,7 +11,7 @@ import { memo } from 'react'; import { PiDotOutlineFill } from 'react-icons/pi'; const CONNECTOR_NODE_SIZE = 35; -const CONNECTOR_HANDLE_SIZE = 24; +const CONNECTOR_HANDLE_SIZE = 12; const CONNECTOR_HANDLE_OFFSET = -CONNECTOR_HANDLE_SIZE / 2; const handleVisualSx = { From b4e446f51bb41d54ca1ddc7dc194a363446c727f Mon Sep 17 00:00:00 2001 From: JPPhoto Date: Tue, 5 May 2026 18:52:31 -0500 Subject: [PATCH 2/2] Changed the node/connector move cursor --- .../src/features/nodes/components/flow/nodes/common/shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/nodes/components/flow/nodes/common/shared.ts b/invokeai/frontend/web/src/features/nodes/components/flow/nodes/common/shared.ts index ade8845b6a5..9da862fb450 100644 --- a/invokeai/frontend/web/src/features/nodes/components/flow/nodes/common/shared.ts +++ b/invokeai/frontend/web/src/features/nodes/components/flow/nodes/common/shared.ts @@ -7,7 +7,7 @@ export const containerSx: SystemStyleObject = { h: 'full', position: 'relative', transitionProperty: 'none', - cursor: 'grab', + cursor: 'pointer', '--border-color': 'var(--invoke-colors-base-500)', '--border-color-selected': 'var(--invoke-colors-blue-300)', '--header-bg-color': 'var(--invoke-colors-base-900)',