mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
(un)lock a frame should not affect elements unrelated to the frame
This commit is contained in:
parent
d9d1a3ab99
commit
0bf1b4c4af
1 changed files with 3 additions and 2 deletions
|
@ -28,8 +28,9 @@ export const actionToggleElementLock = register({
|
|||
elements: elements.map((element) => {
|
||||
if (
|
||||
!selectedElementsMap.has(element.id) &&
|
||||
element.frameId &&
|
||||
!selectedElementsMap.has(element.frameId)
|
||||
(!element.frameId ||
|
||||
// lock frame children if frame is selected
|
||||
(element.frameId && !selectedElementsMap.has(element.frameId)))
|
||||
) {
|
||||
return element;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue