From 753e2ac70870b43d52fa28437b9cc3cc0e174624 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Thu, 9 Jan 2025 16:44:21 +0800 Subject: [PATCH] FIX: fix bug when enable timelapse 1. the error start position after filament change 2. the error wall depth print with tpu jira: none Change-Id: I26d4e1c5c5c3bcae14555f9a875485435cdd6b97 --- src/libslic3r/GCode/WipeTower.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/GCode/WipeTower.cpp b/src/libslic3r/GCode/WipeTower.cpp index 466094832..6806db24d 100644 --- a/src/libslic3r/GCode/WipeTower.cpp +++ b/src/libslic3r/GCode/WipeTower.cpp @@ -3092,10 +3092,11 @@ void WipeTower::generate_new(std::vectordepth + m_perimeter_width; if (is_new_mode && m_enable_timelapse_print) - wipe_tower_depth = m_wipe_tower_width; + wipe_tower_depth = m_wipe_tower_depth; box_coordinates wt_box(Vec2f(0.f, (m_current_shape == SHAPE_REVERSED ? m_layer_info->toolchanges_depth() : 0.f)), m_wipe_tower_width, wipe_tower_depth); wt_box = align_perimeter(wt_box); if (m_use_gap_wall)