Don't speed_adjust twice

This commit is contained in:
thewildmage
2023-07-13 16:48:08 -06:00
parent b3162d71ca
commit dfd08efadb

View File

@@ -594,7 +594,7 @@ std::string CalibPressureAdvancePattern::draw_line(
std::stringstream gcode;
gcode << pattern_writer(model, origin).set_speed(speed_adjust(opt_args.speed));
gcode << pattern_writer(model, origin).set_speed(opt_args.speed);
gcode << pattern_writer(model, origin).extrude_to_xy(to_pt, dE, opt_args.comment);
m_last_pos = Vec3d(to_pt.x(), to_pt.y(), 0);