From 01b0f4df92648a9e9869b8ecef40df14f223a704 Mon Sep 17 00:00:00 2001 From: Daid Date: Mon, 4 Jun 2012 15:09:11 +0200 Subject: [PATCH] Add retract only on jumps to expert settings. --- Cura/gui/expertConfig.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cura/gui/expertConfig.py b/Cura/gui/expertConfig.py index a0602e0..9ab2f1c 100644 --- a/Cura/gui/expertConfig.py +++ b/Cura/gui/expertConfig.py @@ -62,6 +62,9 @@ class expertConfigWindow(configBase.configWindowBase): configBase.TitleRow(right, "Joris") c = configBase.SettingRow(right, "Joris the outer edge", 'joris', False, '[Joris] is a code name for smoothing out the Z move of the outer edge. This will create a steady Z increase over the whole print. It is intended to be used with a single walled wall thickness to make cups/vases.') + configBase.TitleRow(right, "Retraction") + c = configBase.SettingRow(right, "Retract on jumps only", 'retract_on_jumps_only', True, 'Only retract when we are making a move that is over a hole in the model, else retract on every move. This effects print quality in different ways.') + configBase.TitleRow(right, "Dwindle") c = configBase.SettingRow(right, "Enable dwindle", 'enable_dwindle', False, 'Dwindle is used to slow down near the end of a printed line, and reducing the amount of filament printed near the end. This to release the preasure on the printer head.') c = configBase.SettingRow(right, "Pent up volume (mm3)", 'dwindle_pent_up_volume', '0.4', 'Amount of plastic inside the nozzle under pressure. This normally comes out as ooze after printing.')