Skip to content

Commit

Permalink
Fix Imported File Rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
zalo committed Sep 18, 2020
1 parent aff8b85 commit 0967594
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/CADWorker/CascadeStudioFileUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ function loadFiles(files) {
if (i === files.length - 1) {
if (lastImportedShape) {
console.log("Imports complete, rendering shapes now...");
combineAndRenderShapes({ maxDeviation: GUIState['MeshRes'] || 0.1 });
let response = messageHandlers["combineAndRenderShapes"]({ maxDeviation: GUIState['MeshRes'] || 0.1 });
postMessage({ "type": "combineAndRenderShapes", payload: response });
}
}
//consoleGolden.setState(extFiles);
Expand Down

1 comment on commit 0967594

@vercel
Copy link

@vercel vercel bot commented on 0967594 Sep 18, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.