(un)lock a frame should not affect elements unrelated to the frame
This commit is contained in:
parent
d9d1a3ab99
commit
0bf1b4c4af
@ -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…
x
Reference in New Issue
Block a user