From 2af35e0c5dc478b1b058194bb12fb56ad430db06 Mon Sep 17 00:00:00 2001 From: nickthetait Date: Tue, 10 Nov 2015 09:31:17 -0700 Subject: [PATCH] Remove extra filament push on resume --- Cura/util/printerConnection/serialConnection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/printerConnection/serialConnection.py b/Cura/util/printerConnection/serialConnection.py index 5112602e..81af3196 100644 --- a/Cura/util/printerConnection/serialConnection.py +++ b/Cura/util/printerConnection/serialConnection.py @@ -204,7 +204,7 @@ class serialConnection(printerConnectionBase.printerConnectionBase): self.sendCommand("M83") #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)) #Push the filament out self.sendCommand("G1 E-%f F120\n" % (retract_amount)) #retract again # Position the toolhead to the correct position again -- 2.30.2