"stop" immediately after "pause" patch

This commit is contained in:
MRprusa3d 2019-04-29 14:48:29 +02:00
parent 7a30313e43
commit b94930f3e0
1 changed files with 5 additions and 2 deletions

View File

@ -572,8 +572,11 @@ void lcd_commands()
lcd_setstatuspgm(MSG_PRINT_PAUSED);
isPrintPaused = true;
long_pause();
lcd_commands_type = 0;
lcd_commands_step = 0;
if (lcd_commands_type == LCD_COMMAND_LONG_PAUSE) // !!! because "lcd_commands_type" can be changed during/inside "long_pause()"
{
lcd_commands_type = 0;
lcd_commands_step = 0;
}
}
}