2 Commits de0255516e ... 90eafdcff8

Autor SHA1 Mensagem Data
  wzl 90eafdcff8 update: 内容编辑首次渲染优化速度 há 1 mês atrás
  wzl de0255516e update: 内容编辑首次渲染优化速度 há 1 mês atrás
1 ficheiros alterados com 5 adições e 2 exclusões
  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)