mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-09 15:57:55 -06:00
Fix a bug that PA was not set properly
This commit is contained in:
parent
d65311858c
commit
f15b6d5cf8
2 changed files with 5 additions and 1 deletions
|
@ -4065,6 +4065,10 @@ std::string GCode::set_extruder(unsigned int extruder_id, double print_z)
|
||||||
gcode += this->placeholder_parser_process("filament_start_gcode", filament_start_gcode, extruder_id);
|
gcode += this->placeholder_parser_process("filament_start_gcode", filament_start_gcode, extruder_id);
|
||||||
check_add_eol(gcode);
|
check_add_eol(gcode);
|
||||||
}
|
}
|
||||||
|
if (m_config.enable_pressure_advance.get_at(extruder_id)) {
|
||||||
|
gcode += m_writer.set_pressure_advance(m_config.pressure_advance.get_at(extruder_id));
|
||||||
|
}
|
||||||
|
|
||||||
gcode += m_writer.toolchange(extruder_id);
|
gcode += m_writer.toolchange(extruder_id);
|
||||||
return gcode;
|
return gcode;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,4 +11,4 @@ if(NOT DEFINED BBL_INTERNAL_TESTING)
|
||||||
set(BBL_INTERNAL_TESTING "1")
|
set(BBL_INTERNAL_TESTING "1")
|
||||||
endif()
|
endif()
|
||||||
set(SLIC3R_VERSION "01.03.00.22")
|
set(SLIC3R_VERSION "01.03.00.22")
|
||||||
set(SoftFever_VERSION "1.3.3 beta2")
|
set(SoftFever_VERSION "1.3.3 beta3")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue