From 699a11f75e8ff83ccda09c6b7a16f89987a7a7bc Mon Sep 17 00:00:00 2001 From: yogihybo Date: Sat, 2 May 2026 03:32:39 +1000 Subject: [PATCH] Fix to raft checking logic for slow down layers (#13415) --- src/libslic3r/GCode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 1ca8570763..284d40f240 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -6387,7 +6387,7 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, speed = is_perimeter(path.role()) ? m_config.get_abs_value("initial_layer_speed") : m_config.get_abs_value("initial_layer_infill_speed"); } - } else if (m_config.slow_down_layers > 1 && !m_config.raft_layers > 0) { + } else if (m_config.slow_down_layers > 1 && m_config.raft_layers == 0) { if (_layer > 0 && _layer < m_config.slow_down_layers) { const auto first_layer_speed =