Skip to content

Commit

Permalink
Fix Prime volume field missing #7751
Browse files Browse the repository at this point in the history
  • Loading branch information
igiannakas committed Dec 18, 2024
1 parent 27ec198 commit 0a6d376
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 @@ -681,7 +681,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co

toggle_line("single_extruder_multi_material_priming", !bSEMM && have_prime_tower && !is_BBL_Printer);

toggle_line("prime_volume",have_prime_tower && (!purge_in_primetower || !bSEMM));
toggle_line("prime_volume",have_prime_tower && (!purge_in_primetower || !bSEMM || is_BBL_Printer));

for (auto el : {"flush_into_infill", "flush_into_support", "flush_into_objects"})
toggle_field(el, have_prime_tower);
Expand Down

0 comments on commit 0a6d376

Please sign in to comment.