Skip to content

Commit

Permalink
Fix a bug that PA was not set properly
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftFever committed Nov 7, 2022
1 parent d653118 commit f15b6d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/libslic3r/GCode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
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);
return gcode;
}
Expand Down
2 changes: 1 addition & 1 deletion version.inc
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ if(NOT DEFINED BBL_INTERNAL_TESTING)
set(BBL_INTERNAL_TESTING "1")
endif()
set(SLIC3R_VERSION "01.03.00.22")
set(SoftFever_VERSION "1.3.3 beta2")
set(SoftFever_VERSION "1.3.3 beta3")

0 comments on commit f15b6d5

Please sign in to comment.