Change: move Brim chanfer & Max chamfer width into dev mode (#149)

This commit is contained in:
xiaoyeliu
2026-02-04 17:25:45 +08:00
committed by GitHub
parent 5e36482113
commit 7322ed6307
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -40,3 +40,4 @@ resources/profiles/user/default
*.code-workspace
deps_src/build/
.claude/
.omc

View File

@@ -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. "
"This creates a chamfered/tapered effect, reducing material usage while "
"maintaining first layer adhesion.");
def->mode = comAdvanced;
def->mode = comDevelop;
def->set_default_value(new ConfigOptionBool(true));
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 "
"gradual taper but take more layers to complete.");
def->sidetext = "mm"; // milimeters, don't need translation
def->mode = comAdvanced;
def->mode = comDevelop;
def->min = 0.;
def->set_default_value(new ConfigOptionFloat(4.0));