Skip to content

Commit

Permalink
馃┕ IA-Creality minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 24, 2024
1 parent 489ef6e commit 2270bf4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Marlin/src/lcd/tft/ui_common.cpp
Expand Up @@ -96,7 +96,6 @@ void moveAxis(const AxisEnum axis, const int8_t direction) {
else
TERN(BABYSTEP_HOTEND_Z_OFFSET, hotend_offset[active_extruder].z = new_offs, NOOP);
drawMessage_P(NUL_STR); // Clear the error
drawAxisValue(axis);
}
else
drawMessage(GET_TEXT_F(MSG_LCD_SOFT_ENDSTOPS));
Expand All @@ -116,14 +115,12 @@ void moveAxis(const AxisEnum axis, const int8_t direction) {
else
drawMessage_P(NUL_STR); // Clear the error

drawAxisValue(axis);

#endif // !BABYSTEP_ZPROBE_OFFSET
}

#endif // HAS_BED_PROBE

if (!ui.manual_move.processing) {
if (diff && !ui.manual_move.processing) {
// Get motion limit from software endstops, if any
float min, max;
soft_endstop.get_manual_axis_limits(axis, min, max);
Expand Down

0 comments on commit 2270bf4

Please sign in to comment.