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 <mark@lazycat.hu>
This commit is contained in:
Márk Tolmács
2026-02-02 20:12:56 +01:00
committed by GitHub
parent 54a9826817
commit f39ac4a653
+1 -1
View File
@@ -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;