From e94b47217c2d8fe2c9a1ea13a99804fe87fc08d3 Mon Sep 17 00:00:00 2001 From: daid Date: Mon, 21 May 2012 10:50:52 +0200 Subject: [PATCH] Release the steppers on a print cancel. Fixed #110 --- Cura/gui/printWindow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py index 7fc2544..dd14425 100644 --- a/Cura/gui/printWindow.py +++ b/Cura/gui/printWindow.py @@ -223,6 +223,7 @@ class printWindow(wx.Frame): def OnCancel(self, e): self.printIdx = None + self.sendCommand("M84") self.UpdateButtonStates() def OnClose(self, e):