From c999d0c44fb3b020cbfe08eb37e86347ddde6522 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 17 Mar 2013 00:22:53 +0100 Subject: [PATCH] Set default value for first_layer_height to 0.35mm so that first_layer_extrusion_width = 200% works fine even when user sets layer_height to 0.1. A first layer height of 0.35mm works fine for both 0.35 and 0.5 nozzles so it should be fine for most users --- lib/Slic3r/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index b7833462f..e3e9d6392 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -377,7 +377,7 @@ our $Options = { cli => 'first-layer-height=s', type => 'f', ratio_over => 'layer_height', - default => '100%', + default => 0.35, }, 'infill_every_layers' => { label => 'Infill every',