Skip to content

Commit

Permalink
Fix undefined error for nonexistent object in G73 handler (from #278
Browse files Browse the repository at this point in the history
…but doesn't add the other missing handlers yet)
  • Loading branch information
petervanderwalt committed Apr 9, 2024
1 parent 4794ef7 commit 3f1a0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/3dview/workers/verylitegcodeviewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ GCodeParser = function(handlers, modecmdhandlers) {

G73: function(args, indx, gcp) {
// peck drilling. just treat as g1
newLine.g73 = true;
//newLine.g73 = true;
console.log("G73 gcp:", gcp);
gcp.handlers.G1(args);
},
Expand Down

0 comments on commit 3f1a0f7

Please sign in to comment.