From f39ac4a653335efaaaf9834bf28e9ffc1452cb59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rk=20Tolm=C3=A1cs?= Date: Mon, 2 Feb 2026 20:12:56 +0100 Subject: [PATCH] fix(editor): On focus drag only update other binding if it's orbit (#10730) fix(focus): Only update other binding if it's orbit Signed-off-by: Mark Tolmacs --- packages/element/src/arrows/focus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/element/src/arrows/focus.ts b/packages/element/src/arrows/focus.ts index 960524465c..ae02793f72 100644 --- a/packages/element/src/arrows/focus.ts +++ b/packages/element/src/arrows/focus.ts @@ -137,7 +137,7 @@ const focusPointUpdate = ( } // Also update the adjacent end if it has a binding - if (adjacentBinding) { + if (adjacentBinding && adjacentBinding.mode === "orbit") { const adjacentBindableElement = elementsMap.get( adjacentBinding.elementId, ) as ExcalidrawBindableElement;