(un)lock a frame should not affect elements unrelated to the frame

This commit is contained in:
Ryan Di 2023-11-22 18:35:05 +08:00
parent d9d1a3ab99
commit 0bf1b4c4af

View File

@ -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;
}