Babysteps code tweak
As suggested by https://github.com/MarlinFirmware/Marlin/pull/5887#issuecomment-283832163
This commit is contained in:
parent
e309e980ce
commit
34253497d4
1 changed files with 1 additions and 3 deletions
|
@ -785,9 +785,7 @@ void kill_screen(const char* lcd_msg) {
|
||||||
babysteps_done += babystep_increment;
|
babysteps_done += babystep_increment;
|
||||||
}
|
}
|
||||||
if (lcdDrawUpdate)
|
if (lcdDrawUpdate)
|
||||||
lcd_implementation_drawedit(msg, ftostr43sign(
|
lcd_implementation_drawedit(msg, ftostr43sign(planner.steps_to_mm[axis] * babysteps_done));
|
||||||
((1000 * babysteps_done) * planner.steps_to_mm[axis]) * 0.001f
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if ENABLED(BABYSTEP_XY)
|
#if ENABLED(BABYSTEP_XY)
|
||||||
|
|
Reference in a new issue