From b98a66172cd86e75b3e00e95ec48838f87348162 Mon Sep 17 00:00:00 2001 From: James Stanley Date: Mon, 2 May 2022 19:06:54 +0100 Subject: [PATCH] Update TODO --- main.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.js b/main.js index d2068a5..107643b 100644 --- a/main.js +++ b/main.js @@ -183,9 +183,8 @@ ipcMain.on('render-heightmap', (event,arg,replychan) => { if (arg.bottom) opts.push('--bottom'); opts.push(arg.stl); - // TODO: write outputs to project folder; also, write to a - // temporary file until successful, then move to the project - // folder + // TODO: write to a temporary file until successful, then move to the + // project folder console.log(opts); let render = spawn(path.join(__dirname,'bin/pngcam-go-render'), opts); running = render;