mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 11:53:48 +00:00
Fix issue that fan speed not reset to normal after ironing (#12595)
Fix issue that fan speed not reset to normal after ironing (OrcaSlicer/OrcaSlicer#11824)
This commit is contained in:
@@ -879,8 +879,8 @@ std::string CoolingBuffer::apply_layer_cooldown(
|
|||||||
fan_speed_change_requests[CoolingLine::TYPE_IRONING_FAN_START] = true;
|
fan_speed_change_requests[CoolingLine::TYPE_IRONING_FAN_START] = true;
|
||||||
need_set_fan = true;
|
need_set_fan = true;
|
||||||
}
|
}
|
||||||
} else if (line->type & CoolingLine::TYPE_IRONING_FAN_END && fan_speed_change_requests[CoolingLine::TYPE_IRONING_FAN_START]) {
|
} else if (line->type & CoolingLine::TYPE_IRONING_FAN_END) {
|
||||||
if (ironing_fan_control) {
|
if (ironing_fan_control && fan_speed_change_requests[CoolingLine::TYPE_IRONING_FAN_START]) {
|
||||||
fan_speed_change_requests[CoolingLine::TYPE_IRONING_FAN_START] = false;
|
fan_speed_change_requests[CoolingLine::TYPE_IRONING_FAN_START] = false;
|
||||||
}
|
}
|
||||||
need_set_fan = true;
|
need_set_fan = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user