From: nickthetait Date: Tue, 10 Nov 2015 16:13:43 +0000 (-0700) Subject: Small update to comments X-Git-Tag: lulzbot-17.14~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a6619701b566056e9cdc827aaa2e925f138e1140;p=cura.git Small update to comments --- diff --git a/Cura/util/printerConnection/serialConnection.py b/Cura/util/printerConnection/serialConnection.py index 34fb1b6b..5112602e 100644 --- a/Cura/util/printerConnection/serialConnection.py +++ b/Cura/util/printerConnection/serialConnection.py @@ -202,9 +202,10 @@ class serialConnection(printerConnectionBase.printerConnectionBase): retract_amount = profile.getProfileSettingFloat('retraction_amount') # Set E relative positioning self.sendCommand("M83") - #Push the filament back, and retract again, the properly primes the nozzle when changing filament. - self.sendCommand("G1 E%f F120\n" % (retract_amount + 10)) - self.sendCommand("G1 E-%f F120\n" % (retract_amount)) + + #Prime the nozzle when changing filament + self.sendCommand("G1 E%f F120\n" % (retract_amount + 10)) #Push the filament out + self.sendCommand("G1 E-%f F120\n" % (retract_amount)) #retract again # Position the toolhead to the correct position again self.sendCommand("G1 X%f Y%f Z%f F%d\n" % self._pausePosition[0:4])