mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
fix: Point duplication in LEE on ALT+click (#8347)
This commit is contained in:
parent
54491d13d4
commit
84398a7e5c
1 changed files with 1 additions and 1 deletions
|
@ -741,7 +741,7 @@ export class LinearElementEditor {
|
|||
}
|
||||
if (event.altKey && appState.editingLinearElement) {
|
||||
if (
|
||||
linearElementEditor.lastUncommittedPoint == null ||
|
||||
linearElementEditor.lastUncommittedPoint == null &&
|
||||
!isElbowArrow(element)
|
||||
) {
|
||||
mutateElement(element, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue