Skip to content

Commit

Permalink
Fix: Invalid GCode Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
SonarSonic committed Jul 7, 2024
1 parent 6a6c996 commit c2c1cc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/drawingbot/files/exporters/GCodeBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ public void close() {
command(GCodeExporter.replaceWildcards(this, settings.gcodeEndCode.getValue()));

comment("Distance Moved: " + Utils.gcodeFloat(distanceMoved) + " mm");
comment("Distance Moved (Pen Up): " + Utils.gcodeFloat(distanceUp) + " mm");
comment("Distance Moved (Pen Down): " + Utils.gcodeFloat(distanceDown) + " mm");
comment("Distance Moved - Pen Up: " + Utils.gcodeFloat(distanceUp) + " mm");
comment("Distance Moved - Pen Down: " + Utils.gcodeFloat(distanceDown) + " mm");
comment("Points Plotted: " + pointsDrawn + " points");
comment("Pen Lifted: " + penLifts + " times");
comment("Pen Dropped: " + penDrops + " times");
Expand Down

0 comments on commit c2c1cc8

Please sign in to comment.