From e71adc067cf3284d054dc37dc588ab9161de01f7 Mon Sep 17 00:00:00 2001 From: "jiangkai.zhao" Date: Tue, 25 Feb 2025 11:48:35 +0800 Subject: [PATCH] ENH: set max prime_tower_extra_rib_length to 300 jira: STUDIO-10569 Change-Id: Iad518db29206d16bb59b5a938623d351862a190a --- src/libslic3r/PrintConfig.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index f892d5cfb..6b306882b 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -4417,6 +4417,7 @@ void PrintConfigDef::init_fff_params() def->tooltip = L("Positive values can increase the size of the rib wall, while negative values can reduce the size." "However, the size of the rib wall can not be smaller than that determined by the cleaning volume."); def->sidetext = L("mm"); + def->max = 300; def->mode = comAdvanced; def->min = 0; def->set_default_value(new ConfigOptionFloat(0));