From 48e68b9f8e7239d1471afe2f3306150de4ccaa4e Mon Sep 17 00:00:00 2001 From: Kevin Pope Date: Mon, 3 Mar 2014 16:31:51 -0800 Subject: [PATCH] Fixed issue where bed temperature and extruder temperature were not being set to zero. --- PrinterCommunication.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PrinterCommunication.cs b/PrinterCommunication.cs index a17dc3a79..771105bb1 100644 --- a/PrinterCommunication.cs +++ b/PrinterCommunication.cs @@ -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) {