Skip to content

Commit

Permalink
Fix Prime volume field missing SoftFever#7751
Browse files Browse the repository at this point in the history
  • Loading branch information
igiannakas committed Dec 18, 2024
1 parent a5dc4a1 commit dc05c12
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 @@ -684,7 +684,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));

bool pulsatile_purge = config->opt_bool("wipe_tower_pulsatile_purge");
for (auto el : {"wipe_tower_pulse_low_speed","wipe_tower_pulse_high_speed","wipe_tower_retraction_distance","wipe_tower_retraction_speed"})
Expand Down

0 comments on commit dc05c12

Please sign in to comment.