mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-08-31 05:47:02 +00:00
Change: move Brim chanfer & Max chamfer width into dev mode (#149)
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -40,3 +40,4 @@ resources/profiles/user/default
|
|||||||
*.code-workspace
|
*.code-workspace
|
||||||
deps_src/build/
|
deps_src/build/
|
||||||
.claude/
|
.claude/
|
||||||
|
.omc
|
||||||
@@ -5747,7 +5747,7 @@ void PrintConfigDef::init_fff_params()
|
|||||||
def->tooltip = L("Enable gradual layer-by-layer reduction of the brim around the prime tower. "
|
def->tooltip = L("Enable gradual layer-by-layer reduction of the brim around the prime tower. "
|
||||||
"This creates a chamfered/tapered effect, reducing material usage while "
|
"This creates a chamfered/tapered effect, reducing material usage while "
|
||||||
"maintaining first layer adhesion.");
|
"maintaining first layer adhesion.");
|
||||||
def->mode = comAdvanced;
|
def->mode = comDevelop;
|
||||||
def->set_default_value(new ConfigOptionBool(true));
|
def->set_default_value(new ConfigOptionBool(true));
|
||||||
|
|
||||||
def = this->add("prime_tower_brim_chamfer_max_width", coFloat);
|
def = this->add("prime_tower_brim_chamfer_max_width", coFloat);
|
||||||
@@ -5756,7 +5756,7 @@ void PrintConfigDef::init_fff_params()
|
|||||||
"The brim will reduce within this distance. Larger values create a more "
|
"The brim will reduce within this distance. Larger values create a more "
|
||||||
"gradual taper but take more layers to complete.");
|
"gradual taper but take more layers to complete.");
|
||||||
def->sidetext = "mm"; // milimeters, don't need translation
|
def->sidetext = "mm"; // milimeters, don't need translation
|
||||||
def->mode = comAdvanced;
|
def->mode = comDevelop;
|
||||||
def->min = 0.;
|
def->min = 0.;
|
||||||
def->set_default_value(new ConfigOptionFloat(4.0));
|
def->set_default_value(new ConfigOptionFloat(4.0));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user