mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
FIX: allow smooth timelapse without wipe tower
Change-Id: I60d487faa96641dbf88f5502d2fa9ccb83e622c6 (cherry picked from commit 0286a7add9c698a2efd6d40910d72a83f06edba5)
This commit is contained in:
parent
a3dcc40f23
commit
f996eedf49
5 changed files with 14 additions and 27 deletions
|
@ -1730,13 +1730,13 @@ void Print::finalize_first_layer_convex_hull()
|
|||
// Wipe tower support.
|
||||
bool Print::has_wipe_tower() const
|
||||
{
|
||||
if (enable_timelapse_print())
|
||||
return true;
|
||||
if (m_config.enable_prime_tower.value == true) {
|
||||
if (enable_timelapse_print())
|
||||
return true;
|
||||
|
||||
return
|
||||
! m_config.spiral_mode.value &&
|
||||
m_config.enable_prime_tower.value &&
|
||||
m_config.filament_diameter.values.size() > 1;
|
||||
return !m_config.spiral_mode.value && m_config.filament_diameter.values.size() > 1;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
const WipeTowerData& Print::wipe_tower_data(size_t filaments_cnt) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue