From 72613ae2b4368c53f046140b7cec1ad31ef8f5f9 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 5 Mar 2013 15:01:45 +0100 Subject: [PATCH] Enable only_retract_when_crossing_perimeters by default --- README.markdown | 2 +- lib/Slic3r/Config.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index c580c6387..e6ec81eba 100644 --- a/README.markdown +++ b/README.markdown @@ -193,7 +193,7 @@ The author of the Silk icon set is Mark James. --avoid-crossing-perimeters Optimize travel moves so that no perimeters are crossed (default: no) --only-retract-when-crossing-perimeters Disable retraction when travelling between infill paths inside the same island. - (default: no) + (default: yes) --solid-infill-below-area Force solid infill when a region has a smaller area than this threshold (mm^2, default: 70) diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index b46b4e006..4ea040401 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -543,7 +543,7 @@ our $Options = { tooltip => 'Disables retraction when travelling between infill paths inside the same island.', cli => 'only-retract-when-crossing-perimeters!', type => 'bool', - default => 0, + default => 1, }, 'support_material' => { label => 'Generate support material',