Skip to content

Commit

Permalink
Z Min dimensions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Feb 29, 2024
1 parent d2a75f7 commit f92ff70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/lib/GCodeVirtualizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ class GCodeVirtualizer extends EventEmitter {
if (z > this.maxBounds[2]) {
this.maxBounds[2] = z;
}
if (z < this.minBounds[0]) {
if (z < this.minBounds[2]) {
this.minBounds[2] = z;
}
}
Expand Down

0 comments on commit f92ff70

Please sign in to comment.