From: Daid Date: Mon, 4 Jun 2012 13:09:11 +0000 (+0200) Subject: Add retract only on jumps to expert settings. X-Git-Tag: 12.07~43 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=01b0f4df92648a9e9869b8ecef40df14f223a704;p=cura.git Add retract only on jumps to expert settings. --- diff --git a/Cura/gui/expertConfig.py b/Cura/gui/expertConfig.py index a0602e0e..9ab2f1c3 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.')