FIX: the wipe tower should not show for printer which is not support clumping

jira: none
Change-Id: Ife535adb406224252fe8b0b3e7807a3e84752cc2
(cherry picked from commit 2f2bc935bfeb325de548e4cf867eb2d3a5d67879)
This commit is contained in:
zhimin.zeng
2025-08-12 15:31:42 +08:00
committed by Noisyfox
parent f33fe05101
commit 811060aabb
3 changed files with 3 additions and 3 deletions

View File

@@ -1501,7 +1501,7 @@ WipeTower::WipeTower(const PrintConfig& config, int plate_idx, Vec3d plate_origi
//wipe_volumes(flush_matrix)
m_enable_timelapse_print(config.timelapse_type.value == TimelapseType::tlSmooth),
m_enable_wrapping_detection(config.enable_wrapping_detection),
m_wrapping_detection_layers(config.wrapping_detection_layers.value),
m_wrapping_detection_layers(config.wrapping_detection_layers.value && (config.wrapping_exclude_area.values.size() > 2)),
m_slice_used_filaments(slice_used_filaments.size()),
m_filaments_change_length(config.filament_change_length.values),
m_is_multi_extruder(config.nozzle_diameter.size() > 1),