Fixed issue where bed temperature and extruder temperature were not being set to zero.

This commit is contained in:
Kevin Pope 2014-03-03 16:31:51 -08:00
parent 2cf0fa8ad9
commit 48e68b9f8e

View file

@ -1614,14 +1614,14 @@ namespace MatterHackers.MatterControl
{
if (printerCommandQueueIndex == loadedGCode.GCodeCommandQueue.Count)
{
printJobDisplayName = null;
CommunicationState = CommunicationStates.FinishedPrint;
printJobDisplayName = null;
// never leave the extruder and the bed hot
ReleaseMotors();
TargetExtruderTemperature = 0;
TargetBedTemperature = 0;
CommunicationState = CommunicationStates.FinishedPrint;
TargetBedTemperature = 0;
}
else if (!PrinterIsPaused)
{