mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 11:23:42 +00:00
FIX: modify the text of Clumping detection
jira: STUDIO-13659 Change-Id: Ib033689f89d90f14f1eab0a488fa76cbb705afb8 (cherry picked from commit d1606d12b53fa21aab38d882b8bac3215af03e71)
This commit is contained in:
@@ -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)});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user