Skip to content

Commit cc1b1f0

Browse files
committed
qt5_graphics: fix copy paste error resulting in incorrect conversion
This just affected the gcode properties calculations. I have a really bad habit of missing the last few characters when copy pasting.. oops.
1 parent d6c225f commit cc1b1f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/emc/usr_intf/gremlin/qt5_graphics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def from_internal_units(pos, unit=None):
462462
if 200 in canon.state.gcodes:
463463
units = "in"
464464
fmt = "%.4f"
465-
conv = 1/25
465+
conv = 1/25.4
466466
else:
467467
units = "mm"
468468
fmt = "%.3f"

0 commit comments

Comments
 (0)