Use bridge speed for first solid layer above sparse infill. Includes unit test.

This commit is contained in:
Alessandro Ranellucci 2014-03-01 20:34:22 +01:00
parent 344a517ce8
commit a344d68257
2 changed files with 24 additions and 8 deletions
lib/Slic3r

View file

@ -76,7 +76,7 @@ my %role_speeds = (
&EXTR_ROLE_SOLIDFILL => 'solid_infill',
&EXTR_ROLE_TOPSOLIDFILL => 'top_solid_infill',
&EXTR_ROLE_BRIDGE => 'bridge',
&EXTR_ROLE_INTERNALBRIDGE => 'solid_infill',
&EXTR_ROLE_INTERNALBRIDGE => 'bridge',
&EXTR_ROLE_SKIRT => 'perimeter',
&EXTR_ROLE_GAPFILL => 'gap_fill',
);