2 커밋 de0255516e ... 90eafdcff8

작성자 SHA1 메시지 날짜
  wzl 90eafdcff8 update: 内容编辑首次渲染优化速度 1 개월 전
  wzl de0255516e update: 内容编辑首次渲染优化速度 1 개월 전
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      packages/core/src/editor/image_editor.js

+ 5 - 2
packages/core/src/editor/image_editor.js

@@ -80,8 +80,11 @@ export class ImageEditor {
     this.eventBus._on('imagePropertyChanged', this.onHandlePropertyPanelChanged)
     this.eventBus._on('showContentEditorType', this.onShowContentEditorType)
 
-    if (this.isUpdate) await this.updateCanvas()
-    else await this.getRect()
+    if (this.isUpdate) {
+      await this.updateCanvas()
+    } else {
+      await this.getRect()
+    }
 
     this.opacity = await this.messageHandler.sendWithPromise('GetImageTransparency', this.editAreaPtr)