From 0bf74c97c3e704c6e541df17805b7621db19bcda Mon Sep 17 00:00:00 2001 From: SoftFever Date: Thu, 22 Dec 2022 22:38:24 +0800 Subject: [PATCH] disable PA when printing numbers --- src/libslic3r/calib.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libslic3r/calib.cpp b/src/libslic3r/calib.cpp index 26ee72e5e6..92c2c0dfdf 100644 --- a/src/libslic3r/calib.cpp +++ b/src/libslic3r/calib.cpp @@ -50,6 +50,8 @@ namespace Slic3r { gcode << writer.extrude_to_xy(Vec2d(start_x + m_length_short + m_length_long + m_length_short, y_pos + i * y_offset), e * m_length_short); } + gcode << writer.set_pressure_advance(0.0); + // draw indicator lines gcode << writer.set_speed(fast); gcode << move_to(Vec2d(start_x + m_length_short, y_pos + (num - 1) * y_offset + 2));