FIX: modify the text of Clumping detection

jira: STUDIO-13659
Change-Id: Ib033689f89d90f14f1eab0a488fa76cbb705afb8
(cherry picked from commit d1606d12b53fa21aab38d882b8bac3215af03e71)
This commit is contained in:
zhimin.zeng
2025-07-28 21:53:32 +08:00
committed by Noisyfox
parent 269b4d9fc2
commit b3689ec700

View File

@@ -3564,21 +3564,21 @@ void PrintConfigDef::init_fff_params()
// BBS // BBS
def = this->add("enable_wrapping_detection", coBool); def = this->add("enable_wrapping_detection", coBool);
def->label = L("Enable wrapping detection"); def->label = L("Enable clumping detection");
def->tooltip = L("Enable wrapping detection"); def->tooltip = L("Enable clumping detection");
def->mode = comAdvanced; def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(false)); def->set_default_value(new ConfigOptionBool(false));
def = this->add("wrapping_detection_layers", coInt); def = this->add("wrapping_detection_layers", coInt);
def->label = L("Wrapping detection layers"); def->label = L("Clumping detection layers");
def->tooltip = L("Wrapping detection layers."); def->tooltip = L("Clumping detection layers.");
def->min = 0; def->min = 0;
def->mode = comDevelop; def->mode = comDevelop;
def->set_default_value(new ConfigOptionInt(20)); def->set_default_value(new ConfigOptionInt(20));
def = this->add("wrapping_detection_path", coPoints); def = this->add("wrapping_detection_path", coPoints);
def->label = L("Wrapping detection position"); //def->label = L("Clumping detection position");
def->tooltip = L("Wrapping detection position."); //def->tooltip = L("Clumping detection position.");
def->mode = comAdvanced; def->mode = comAdvanced;
def->set_default_value(new ConfigOptionPoints{Vec2d(197.5, 326), Vec2d(207.5, 326)}); def->set_default_value(new ConfigOptionPoints{Vec2d(197.5, 326), Vec2d(207.5, 326)});