mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 06:57:36 -06:00
Merge branch 'main' into enh-port-edit-gcode-dlg
This commit is contained in:
commit
02258b4391
15 changed files with 93 additions and 34 deletions
|
@ -4540,6 +4540,20 @@ def = this->add("filament_loading_speed", coFloats);
|
|||
def->min = 0;
|
||||
def->set_default_value(new ConfigOptionPercent(25));
|
||||
|
||||
def = this->add("min_length_factor", coFloat);
|
||||
def->label = L("Minimum wall length");
|
||||
def->category = L("Quality");
|
||||
def->tooltip = L("Adjust this value to prevent short, unclosed walls from being printed, which could increase print time. "
|
||||
"Higher values remove more and longer walls.\n\n"
|
||||
"NOTE: Bottom and top surfaces will not be affected by this value to prevent visual gaps on the ouside of the model. "
|
||||
"Adjust 'One wall threshold' in the Advanced settings below to adjust the sensitivity of what is considered a top-surface. "
|
||||
"'One wall threshold' is only visibile if this setting is set above the default value of 0.5, or if single-wall top surfaces is enabled.");
|
||||
def->sidetext = L("");
|
||||
def->mode = comAdvanced;
|
||||
def->min = 0.0;
|
||||
def->max = 25.0;
|
||||
def->set_default_value(new ConfigOptionFloat(0.5));
|
||||
|
||||
def = this->add("initial_layer_min_bead_width", coPercent);
|
||||
def->label = L("First layer minimum wall width");
|
||||
def->category = L("Quality");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue