From 709ec5171253d1e5b265680c2dd4f9596f8d097b Mon Sep 17 00:00:00 2001 From: Ian Bassi Date: Wed, 22 Apr 2026 13:22:34 -0300 Subject: [PATCH] Remove validation for Disabled Small area compensation (#12528) Do not check if disabled --- 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 e23543869b..333b9b842a 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -2476,7 +2476,7 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato } else m_enable_extrusion_role_markers = false; - if (!print.config().small_area_infill_flow_compensation_model.empty()) + if (m_config.small_area_infill_flow_compensation.value && !m_config.small_area_infill_flow_compensation_model.empty()) m_small_area_infill_flow_compensator = make_unique(print.config()); // Process file_start_gcode - written at the very top of the file, before any header