🎨 Null heating message method

This commit is contained in:
Scott Lahteine
2021-05-22 17:56:31 -05:00
committed by Scott Lahteine
parent 83f9413196
commit d1502f74ea
4 changed files with 7 additions and 7 deletions

View File

@ -125,10 +125,8 @@ void GcodeSuite::M104_M109(const bool isM109) {
thermalManager.auto_job_check_timer(isM109, true);
#endif
#if HAS_STATUS_MESSAGE
if (thermalManager.isHeatingHotend(target_extruder) || !no_wait_for_cooling)
thermalManager.set_heating_message(target_extruder);
#endif
if (thermalManager.isHeatingHotend(target_extruder) || !no_wait_for_cooling)
thermalManager.set_heating_message(target_extruder);
}
TERN_(AUTOTEMP, planner.autotemp_M104_M109());