Skip to content

Commit

Permalink
Rename the option to scarf joint seam
Browse files Browse the repository at this point in the history
  • Loading branch information
Noisyfox committed Jan 27, 2024
1 parent c502f0c commit f3f0c82
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3431,30 +3431,31 @@ def = this->add("filament_loading_speed", coFloats);
def->set_default_value(new ConfigOptionFloatOrPercent(10,true));

def = this->add("seam_slope_enabled", coBool);
def->label = L("Sloped seam");
def->label = L("Scarf joint seam");
def->tooltip = L("Use scarf joint to minimize seam visibility and increase seam strength.");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(false));

def = this->add("seam_slope_start_height", coFloatOrPercent);
def->label = L("Seam slope start height");
def->tooltip = L("Start height of the slope.\n"
def->label = L("Scarf start height");
def->tooltip = L("Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the current layer height. The default value for this parameter is 0.05mm.");
def->sidetext = L("mm or %");
def->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloatOrPercent(0.05, false));

def = this->add("seam_slope_min_length", coFloat);
def->label = L("Seam slope length");
def->tooltip = L("Length of the slope. Setting this parameter to zero effectively disables the slope.");
def->label = L("Scarf length");
def->tooltip = L("Length of the scarf. Setting this parameter to zero effectively disables the scarf.");
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(5));

def = this->add("seam_slope_steps", coInt);
def->label = L("Seam slope steps");
def->tooltip = L("Minimum number of segments of each slope.");
def->label = L("Scarf steps");
def->tooltip = L("Minimum number of segments of each scarf.");
def->min = 1;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionInt(10));
Expand Down

0 comments on commit f3f0c82

Please sign in to comment.