Skip to content

Commit

Permalink
Don't disable pressure advance if no ramming for the wipe tower.
Browse files Browse the repository at this point in the history
  • Loading branch information
supermerill committed Aug 10, 2022
1 parent 5c73d9d commit fe2335b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/libslic3r/GCode/WipeTower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,10 @@ void WipeTower::toolchange_Unload(
}
}

writer.disable_linear_advance();
// Disable linear/pressure advance for ramming, as it can mess up the ramming procedure
if (i < m_filpar[m_current_tool].ramming_speed.size()) {
writer.disable_linear_advance();
}

// now the ramming itself:
while (i < m_filpar[m_current_tool].ramming_speed.size())
Expand Down

0 comments on commit fe2335b

Please sign in to comment.