Do not allow to resume a print twice while waiting for the hotend

Clear isPrintPaused just prior to restore_print_from_ram_and_continue.
This commit is contained in:
Yuri D'Elia 2019-12-15 22:22:44 +01:00
parent 6ab3b20ce1
commit 348bbbffb0

View File

@ -6752,10 +6752,10 @@ void lcd_resume_print()
if (fan_error_selftest()) return; //abort if error persists
isPrintPaused = false;
restore_print_from_ram_and_continue(0.0);
pause_time += (_millis() - start_pause_print); //accumulate time when print is paused for correct statistics calculation
refresh_cmd_timeout();
isPrintPaused = false;
SERIAL_PROTOCOLLNRPGM(MSG_OCTOPRINT_RESUMED); //resume octoprint
}
@ -6907,7 +6907,7 @@ static void lcd_main_menu()
{
MENU_ITEM_FUNCTION_P(_i("Pause print"), lcd_pause_print);////MSG_PAUSE_PRINT
}
else
else if(isPrintPaused)
{
#ifdef FANCHECK
if((fan_check_error == EFCE_FIXED) || (fan_check_error == EFCE_OK))