diff --git a/src/actions/actionStyles.ts b/src/actions/actionStyles.ts index 079412f47..c6c37fbed 100644 --- a/src/actions/actionStyles.ts +++ b/src/actions/actionStyles.ts @@ -43,7 +43,7 @@ export const actionPasteStyles: Action = { roughness: pastedElement?.roughness, }; if (isTextElement(newElement)) { - newElement.font = pastedElement?.font; + newElement.font = pastedElement?.font || "20px Virgil"; redrawTextBoundingBox(newElement); } return newElement;