فهرست منبع

Fix pasting styles on text elements (#833)

Faustino Kialungila 5 سال پیش
والد
کامیت
2131befd7a
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/actions/actionStyles.ts

+ 1 - 1
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;