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

@@ -2956,7 +2956,7 @@ size_t Print::get_extruder_id(unsigned int filament_id) const
bool Print::has_wipe_tower() const
{
if (m_config.enable_prime_tower.value == true) {
if (m_config.enable_wrapping_detection.value)
if (m_config.enable_wrapping_detection.value && m_config.wrapping_exclude_area.values.size() > 2)
return true;
if (enable_timelapse_print())