Procházet zdrojové kódy

Issue #941: fixed syncronization issue: saveImage vs clear

cycle20 před 6 měsíci
rodič
revize
274ca0257d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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();