From b3689ec7007a4bd2faf2de8ef26aa8787aaf109c Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Mon, 28 Jul 2025 21:53:32 +0800 Subject: [PATCH] FIX: modify the text of Clumping detection jira: STUDIO-13659 Change-Id: Ib033689f89d90f14f1eab0a488fa76cbb705afb8 (cherry picked from commit d1606d12b53fa21aab38d882b8bac3215af03e71) --- src/libslic3r/PrintConfig.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 0c4b4e9355..726b30b57f 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3564,21 +3564,21 @@ void PrintConfigDef::init_fff_params() // BBS def = this->add("enable_wrapping_detection", coBool); - def->label = L("Enable wrapping detection"); - def->tooltip = L("Enable wrapping detection"); + def->label = L("Enable clumping detection"); + def->tooltip = L("Enable clumping detection"); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(false)); def = this->add("wrapping_detection_layers", coInt); - def->label = L("Wrapping detection layers"); - def->tooltip = L("Wrapping detection layers."); + def->label = L("Clumping detection layers"); + def->tooltip = L("Clumping detection layers."); def->min = 0; def->mode = comDevelop; def->set_default_value(new ConfigOptionInt(20)); def = this->add("wrapping_detection_path", coPoints); - def->label = L("Wrapping detection position"); - def->tooltip = L("Wrapping detection position."); + //def->label = L("Clumping detection position"); + //def->tooltip = L("Clumping detection position."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionPoints{Vec2d(197.5, 326), Vec2d(207.5, 326)});