瀏覽代碼

Issue #941: fixed syncronization issue: saveImage vs clear

cycle20 6 月之前
父節點
當前提交
274ca0257d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/TmImageRenderer/index.ts

+ 1 - 1
src/TmImageRenderer/index.ts

@@ -104,7 +104,7 @@ async function main() {
     // Export images
     fs.mkdirSync(args.outDirectory, { recursive: true });
     setTimeout(async () => {
-            plugin.saveImage(path.join(args.outDirectory, fileName), { width: 100, height: 100 });
+            await plugin.saveImage(path.join(args.outDirectory, fileName), { width: 100, height: 100 });
             // Cleanup
             await plugin.clear();
             plugin.dispose();