Skip to content

Commit 7841f94

Browse files
Merge pull request #755 from blurfl/Fix-G38.2-metric-default-value
Fix G38.2 metric default value
2 parents 7a5825b + b449f1d commit 7841f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UIElements/zAxisPopupContent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def touchZero(self):
142142
if self.data.units == "INCHES":
143143
self.data.gcode_queue.put("G38.2 Z-.2 F2") #Only go down 0.2 inches...
144144
else:
145-
self.data.gcode_queue.put("G38.2 Z-.5 F50") #Or 0.5mm.
145+
self.data.gcode_queue.put("G38.2 Z-5 F50") #Or 5mm.
146146
self.resetMachineUnits()
147147

148148

0 commit comments

Comments
 (0)