mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 10:17:55 -06:00
Fix a regression for SEMM when ramming and cooling is disabled
This commit is contained in:
parent
aec1a40795
commit
f84c3a00e0
1 changed files with 1 additions and 1 deletions
|
@ -984,7 +984,7 @@ void WipeTower2::toolchange_Unload(
|
||||||
}
|
}
|
||||||
|
|
||||||
const int& number_of_cooling_moves = m_filpar[m_current_tool].cooling_moves;
|
const int& number_of_cooling_moves = m_filpar[m_current_tool].cooling_moves;
|
||||||
const bool cooling_will_happen = m_semm && number_of_cooling_moves > 0;
|
const bool cooling_will_happen = m_semm && number_of_cooling_moves > 0 && m_cooling_tube_length != 0;
|
||||||
bool change_temp_later = false;
|
bool change_temp_later = false;
|
||||||
|
|
||||||
// Wipe tower should only change temperature with single extruder MM. Otherwise, all temperatures should
|
// Wipe tower should only change temperature with single extruder MM. Otherwise, all temperatures should
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue