Fix manual move axis display value
The workspace offset is now added to the XYZ values.
This commit is contained in:
parent
a18d6171a6
commit
198b059b44
@ -2950,11 +2950,11 @@ void kill_screen(const char* lcd_msg) {
|
||||
}
|
||||
encoderPosition = 0;
|
||||
if (lcdDrawUpdate) {
|
||||
const float pos = (processing_manual_move ? destination[axis] : current_position[axis]
|
||||
const float pos = NATIVE_TO_LOGICAL(processing_manual_move ? destination[axis] : current_position[axis]
|
||||
#if IS_KINEMATIC
|
||||
+ manual_move_offset
|
||||
#endif
|
||||
);
|
||||
, axis);
|
||||
lcd_implementation_drawedit(name, move_menu_scale >= 0.1 ? ftostr41sign(pos) : ftostr43sign(pos));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user