Fixed issue where bed temperature and extruder temperature were not being set to zero.
This commit is contained in:
parent
2cf0fa8ad9
commit
48e68b9f8e
1 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue