mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-27 09:59:48 -07:00
FIX: modify the text of Clumping detection
jira: STUDIO-13659 Change-Id: Ib033689f89d90f14f1eab0a488fa76cbb705afb8 (cherry picked from commit d1606d12b53fa21aab38d882b8bac3215af03e71)
This commit is contained in:
parent
269b4d9fc2
commit
b3689ec700
1 changed files with 6 additions and 6 deletions
|
|
@ -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)});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue