Merge pull request #4298 from wavexx/lcd_tm_cal_fix

TM: Fix TM calibration from the Calibration menu
This commit is contained in:
3d-gussner 2023-08-01 16:34:00 +02:00 committed by GitHub
commit ce013b35c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2724,7 +2724,7 @@ void thermal_model_autotune(int16_t temp, bool selftest)
thermal_model_autotune_err = true;
char tm_message[LCD_WIDTH+1];
if(moves_planned() || printer_active()) {
if(moves_planned() || (lcd_commands_type != LcdCommands::ThermalModel && printer_active())) {
sprintf_P(tm_message, PSTR("TM: Cal. NOT IDLE"));
lcd_setstatus_serial(tm_message);
return;