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:
authornickthetait <tait@alephobjects.com>2015-11-10 19:13:43 +0300
committernickthetait <tait@alephobjects.com>2015-11-10 19:13:43 +0300
commita6619701b566056e9cdc827aaa2e925f138e1140 (patch)
tree69764e74bf6ad5768271acf0e72aed7abf7c13c3
parent46201ea7a98b3e1d99eac7f4222cdde3d91b54f6 (diff)
Small update to comments
-rw-r--r--Cura/util/printerConnection/serialConnection.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Cura/util/printerConnection/serialConnection.py b/Cura/util/printerConnection/serialConnection.py
index 34fb1b6b01..5112602e1f 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])