mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-11-10 15:54:37 +01:00
fix: Alt-duplication doesn't place the duplicate at the last moment where Alt is pressed
fix: Shift + Alt fix: Test chore: Revert to master Signed-off-by: Mark Tolmacs <mark@lazycat.hu> fix: Arrow re-draw Signed-off-by: Mark Tolmacs <mark@lazycat.hu>
This commit is contained in:
@@ -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);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user