From 92181be8a1d350c990144ddb90df198568bbcde3 Mon Sep 17 00:00:00 2001 From: daid303 Date: Fri, 10 May 2013 16:31:45 +0200 Subject: [PATCH] Small update to the dual-head wizard. Cool down the nozzles after printing the final matrix, and disable the resume button when done. --- Cura/gui/configWizard.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index e2a26b3d..fa653f66 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -1071,6 +1071,8 @@ class headOffsetCalibrationPage(InfoPage): gcode.addRetract(15) gcode.addMove(z=15) gcode.addCmd('M400') + gcode.addCmd('M104 T0 S0') + gcode.addCmd('M104 T1 S0') self.comm.printGCode(gcode.list()) elif self._wizardState == 7: try: @@ -1095,6 +1097,7 @@ class headOffsetCalibrationPage(InfoPage): self.infoBox.SetReadyIndicator() self._wizardState = 8 self.comm.close() + self.resumeButton.Enable(False) def mcLog(self, message): print 'Log:', message -- 2.30.2