Minor error causing support material to fail when first_layer_height was expressed in % (caught by regression test). #1371
This commit is contained in:
parent
4438aec12c
commit
f6569cf359
@ -910,7 +910,7 @@ sub generate_support_material {
|
||||
###$contact_z = $layer->print_z - $layer->height;
|
||||
|
||||
# ignore this contact area if it's too low
|
||||
next if $contact_z < $Slic3r::Config->first_layer_height;
|
||||
next if $contact_z < $Slic3r::Config->get_value('first_layer_height');
|
||||
|
||||
$contact{$contact_z} = [ @contact ];
|
||||
$overhang{$contact_z} = [ @overhang ];
|
||||
|
Loading…
Reference in New Issue
Block a user