z_offset change
Avoids to have to recalibrate the delta_height after a z_offset change
This commit is contained in:
parent
dcf30a69d6
commit
a9bc1d30cc
1 changed files with 4 additions and 0 deletions
|
@ -8488,6 +8488,10 @@ inline void gcode_M503() {
|
|||
#else
|
||||
UNUSED(no_babystep);
|
||||
#endif
|
||||
|
||||
#if ENABLED(DELTA) // correct the delta_height
|
||||
home_offset[Z_AXIS] -= diff;
|
||||
#endif
|
||||
}
|
||||
|
||||
last_zoffset = zprobe_zoffset;
|
||||
|
|
Reference in a new issue