mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-03-04 17:44:46 -07:00
FIX: FIX: fix width error of rib wall
when enable timelapse_print without toolchange; jira: none Change-Id: I4c89acc70ee122c0ad504d97c003ebb4016567d1 (cherry picked from commit 6350ebf9b651a933ab8a9030da9cdf9b1608cff0)
This commit is contained in:
parent
87bb315773
commit
715a8a8518
1 changed files with 3 additions and 1 deletions
|
|
@ -3510,8 +3510,10 @@ void WipeTower::plan_tower_new()
|
|||
|
||||
// only for get m_extra_spacing
|
||||
{
|
||||
if (m_enable_timelapse_print && max_depth < EPSILON)
|
||||
if (m_enable_timelapse_print && max_depth < EPSILON) {
|
||||
max_depth = min_wipe_tower_depth;
|
||||
if (m_use_rib_wall) { m_wipe_tower_width = max_depth; }
|
||||
}
|
||||
|
||||
if (max_depth + EPSILON < min_wipe_tower_depth) {
|
||||
m_extra_spacing = min_wipe_tower_depth / max_depth;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue