mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 07:27:41 -06:00
Fix ooze prevention bug
This commit is contained in:
parent
2fe68edc85
commit
4bca54873d
3 changed files with 5 additions and 5 deletions
|
@ -258,7 +258,7 @@ static std::vector<Vec2d> get_path_of_change_filament(const Print& print)
|
|||
|
||||
unsigned int extruder_id = gcodegen.writer().extruder()->id();
|
||||
const auto& filament_idle_temp = gcodegen.config().idle_temperature;
|
||||
if (filament_idle_temp.get_at(extruder_id) > 0) {
|
||||
if (filament_idle_temp.get_at(extruder_id) == 0) {
|
||||
// There is no idle temperature defined in filament settings.
|
||||
// Use the delta value from print config.
|
||||
if (gcodegen.config().standby_temperature_delta.value != 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue