Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaid <daid303@gmail.com>2012-05-21 12:50:52 +0400
committerdaid <daid303@gmail.com>2012-05-21 12:50:52 +0400
commite94b47217c2d8fe2c9a1ea13a99804fe87fc08d3 (patch)
tree245541079c98baf39965f20ca676e1bcc816cf9d
parent3192b0ac71f238d4bd6d0573574f880182b49396 (diff)
Release the steppers on a print cancel. Fixed #110
-rw-r--r--Cura/gui/printWindow.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py
index 7fc25442c4..dd14425a4e 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):