mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-01 04:10:56 -07:00
Don't emit the preheat command if ooze_prevention is disabled. (#11791)
This commit is contained in:
parent
7c91459c37
commit
32cf44fc0a
1 changed files with 1 additions and 1 deletions
|
|
@ -1846,7 +1846,7 @@ void GCodeProcessor::apply_config(const PrintConfig& config)
|
|||
// sanity check
|
||||
if(m_preheat_steps < 1)
|
||||
m_preheat_steps = 1;
|
||||
m_result.backtrace_enabled = m_preheat_time > 0 && (m_is_XL_printer || (!m_single_extruder_multi_material && filament_count > 1));
|
||||
m_result.backtrace_enabled = config.ooze_prevention && m_preheat_time > 0 && (m_is_XL_printer || (!m_single_extruder_multi_material && filament_count > 1));
|
||||
|
||||
assert(config.nozzle_volume.size() == config.nozzle_diameter.size());
|
||||
m_nozzle_volume.resize(config.nozzle_volume.size());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue