FIX: only check TPU for multi-extruder printer
jira: none Change-Id: I1fb882c05d43ffbcd42950ca6618d5789f148cd9
This commit is contained in:
parent
7380ee0a2c
commit
1b41b9a763
|
@ -1132,7 +1132,7 @@ void ToolOrdering::reorder_extruders_for_minimum_flush_volume(bool reorder_first
|
||||||
|
|
||||||
check_filament_printable_after_group(used_filaments, filament_maps, print_config);
|
check_filament_printable_after_group(used_filaments, filament_maps, print_config);
|
||||||
|
|
||||||
if (!check_tpu_group(used_filaments, filament_maps, print_config)) {
|
if (nozzle_nums > 1 && !check_tpu_group(used_filaments, filament_maps, print_config)) {
|
||||||
if (map_mode == FilamentMapMode::fmmManual) {
|
if (map_mode == FilamentMapMode::fmmManual) {
|
||||||
throw Slic3r::RuntimeError(std::string("Manual grouping error: TPU can only be placed in a nozzle alone."));
|
throw Slic3r::RuntimeError(std::string("Manual grouping error: TPU can only be placed in a nozzle alone."));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue