qinyan 1 year ago
parent
commit
fb3a2bb53e

+ 0 - 2
src/modules/editor/components/Viewport/Content/index.tsx

@@ -49,8 +49,6 @@ export default defineUI({
             refs.parent.value
           );
           helper.initEditLayer(editLayerRef.value);
-          controls.screenCtrl.updateAdapterState();
-          controls.editorCtrl.autoInScreen();
         }, 100);
       }
 

+ 3 - 1
src/modules/editor/controllers/EditorCtrl/index.ts

@@ -51,7 +51,9 @@ export class EditorCtrl extends ModuleControl<EditorModule> {
       CanvasRef.value.style.width = "100%";
       CanvasRef.value.style.height = "100%";
       EditorRef.value.style.position = "absolute";
-
+     setTimeout(() => {
+        this.autoInScreen();
+     }, 200);
       this.initEditorEvent(EditorRef.value, ParentRef.value as any);
     };