From a8f1220f195114e299957dcae653b24cd2e6fd2a Mon Sep 17 00:00:00 2001 From: Jack_up <36533859+GiacomoGuaresi@users.noreply.github.com> Date: Sat, 28 Jun 2025 04:49:29 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Set=20the=20default=20value=20for=20the?= =?UTF-8?q?=20skeleton=20infill=20width=20to=200=20fork=20sk=E2=80=A6=20(#?= =?UTF-8?q?9995)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: Set the default value for the skeleton infill width to 0 fork skipping the min check * fix: Update default value for skeleton infill line width to 100% --- src/libslic3r/PrintConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index fa2669a35a..590dbb785b 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3189,7 +3189,7 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "nozzle_diameter"; def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(0.4, false)); + def->set_default_value(new ConfigOptionFloatOrPercent(100, true)); def = this->add("skeleton_infill_line_width", coFloatOrPercent); def->label = L("Skeleton line width"); @@ -3199,7 +3199,7 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "nozzle_diameter"; def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(0.4, false)); + def->set_default_value(new ConfigOptionFloatOrPercent(100, true)); def = this->add("symmetric_infill_y_axis", coBool); def->label = L("Symmetric infill y axis");