Skip to content

Commit

Permalink
Fix of Top solid infill settings cannot be changed in Vase mode #4241
Browse files Browse the repository at this point in the history
  • Loading branch information
bubnikv committed Aug 23, 2021
1 parent 64fc2eb commit 30bca80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slic3r/GUI/ConfigManipulation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig* config)
toggle_field("gap_fill_speed", have_perimeters);

for (auto el : { "top_infill_extrusion_width", "top_solid_infill_speed" })
toggle_field(el, has_top_solid_infill);
toggle_field(el, has_top_solid_infill || (has_spiral_vase && has_bottom_solid_infill));

bool have_default_acceleration = config->opt_float("default_acceleration") > 0;
for (auto el : { "perimeter_acceleration", "infill_acceleration",
Expand Down

0 comments on commit 30bca80

Please sign in to comment.