🐛 Fix misc. UI issues (#25252)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
@@ -1418,12 +1418,8 @@ void prepare_line_to_destination() {
|
||||
#if EITHER(PREVENT_COLD_EXTRUSION, PREVENT_LENGTHY_EXTRUDE)
|
||||
|
||||
if (!DEBUGGING(DRYRUN) && destination.e != current_position.e) {
|
||||
bool ignore_e = false;
|
||||
|
||||
#if ENABLED(PREVENT_COLD_EXTRUSION)
|
||||
ignore_e = thermalManager.tooColdToExtrude(active_extruder);
|
||||
if (ignore_e) SERIAL_ECHO_MSG(STR_ERR_COLD_EXTRUDE_STOP);
|
||||
#endif
|
||||
bool ignore_e = thermalManager.tooColdToExtrude(active_extruder);
|
||||
if (ignore_e) SERIAL_ECHO_MSG(STR_ERR_COLD_EXTRUDE_STOP);
|
||||
|
||||
#if ENABLED(PREVENT_LENGTHY_EXTRUDE)
|
||||
const float e_delta = ABS(destination.e - current_position.e) * planner.e_factor[active_extruder];
|
||||
|
Reference in New Issue
Block a user