Little regressions after recent merge

degen-loop-screen
Alessandro Ranellucci 2012-09-21 16:08:22 +02:00
parent 392309a369
commit 27b71d8885
1 changed files with 2 additions and 2 deletions

View File

@ -897,9 +897,9 @@ sub arrange {
my $skirt_margin;
if ($Config->skirts > 0) {
my $flow = Slic3r::Flow->new(
layer_height => $Config->first_layer_height,
layer_height => $Config->get_value('first_layer_height'),
nozzle_diameter => $Config->nozzle_diameter->[0], # TODO: actually look for the extruder used for skirt
width => $Config->first_layer_extrusion_width,
width => $Config->get_value('first_layer_extrusion_width'),
);
$skirt_margin = ($flow->spacing * $Config->skirts + $Config->skirt_distance) * 2;
} else {