Browse Source

fix improper duplication for texts inside frame

Ryan Di 2 years ago
parent
commit
5a9f3dfdd8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/actions/actionDuplicateSelection.tsx

+ 2 - 2
src/actions/actionDuplicateSelection.tsx

@@ -104,8 +104,8 @@ const duplicateElements = (
 
   const idsOfElementsToDuplicate = arrayToMap(
     getSelectedElements(sortedElements, appState, {
-      includeBoundTextElement: true,
-      includeElementsInFrames: true,
+      includeBoundTextElement: false,
+      includeElementsInFrames: false,
     }),
   );