|
|
@@ -8865,6 +8865,15 @@ class App extends React.Component<AppProps, AppState> {
|
|
|
}));
|
|
|
|
|
|
this.scene.replaceAllElements(elementsWithIndices);
|
|
|
+ elementsWithIndices.forEach((element) => {
|
|
|
+ if (
|
|
|
+ isBindableElement(element) &&
|
|
|
+ element.boundElements?.some((other) => other.type === "arrow")
|
|
|
+ ) {
|
|
|
+ updateBoundElements(element, this.scene);
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
this.maybeCacheVisibleGaps(event, selectedElements, true);
|
|
|
this.maybeCacheReferenceSnapPoints(event, selectedElements, true);
|
|
|
});
|