Skip to content

Commit

Permalink
Enable support speed also when brim or skirt
Browse files Browse the repository at this point in the history
Same behavior for the accelerations
#2776
  • Loading branch information
supermerill committed May 2, 2022
1 parent 508eb70 commit 49ec69a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/slic3r/GUI/ConfigManipulation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig* config)
toggle_field("perimeter_extrusion_spacing", have_perimeters || have_brim);
toggle_field("skirt_extrusion_width", have_skirt);
toggle_field("support_material_extruder", have_support_material || have_skirt);
toggle_field("support_material_speed", have_support_material);
toggle_field("support_material_speed", have_support_material || have_skirt || have_brim);
toggle_field("brim_speed", have_brim || have_skirt);

toggle_field("raft_contact_distance", have_raft && !have_support_soluble);
Expand Down Expand Up @@ -527,7 +527,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig* config)
toggle_field("ironing_acceleration", have_default_acceleration && has_ironing);
toggle_field("support_material_acceleration", have_default_acceleration && (have_support_material || have_brim || have_skirt));
toggle_field("support_material_interface_acceleration", have_default_acceleration && have_support_material && have_support_interface);
toggle_field("brim_acceleration", have_default_acceleration && have_support_material && (have_brim || have_skirt));
toggle_field("brim_acceleration", have_default_acceleration && (have_brim || have_skirt));
for (auto el : { "bridge_acceleration", "bridge_internal_acceleration", "overhangs_acceleration", "gap_fill_acceleration", "travel_acceleration", "travel_deceleration_use_target", "first_layer_acceleration" })
toggle_field(el, have_default_acceleration);

Expand Down

0 comments on commit 49ec69a

Please sign in to comment.