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:07:14 +0300
committernickthetait <tait@alephobjects.com>2015-11-10 19:07:14 +0300
commit46201ea7a98b3e1d99eac7f4222cdde3d91b54f6 (patch)
treee589e47cd68536b25f9bfa38256ac79fdbc6f49d
parente20d8ece5f0a88815b537eab3df67126b0f8b580 (diff)
Attempt to improve nozzle priming on resume
Wastes a little filament, seems neccesary for very narrow/small prints
-rw-r--r--Cura/util/printerConnection/serialConnection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cura/util/printerConnection/serialConnection.py b/Cura/util/printerConnection/serialConnection.py
index bf37ea6441..34fb1b6b01 100644
--- a/Cura/util/printerConnection/serialConnection.py
+++ b/Cura/util/printerConnection/serialConnection.py
@@ -203,7 +203,7 @@ class serialConnection(printerConnectionBase.printerConnectionBase):
# 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))
+ self.sendCommand("G1 E%f F120\n" % (retract_amount + 10))
self.sendCommand("G1 E-%f F120\n" % (retract_amount))
# Position the toolhead to the correct position again