mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 18:27:58 -06:00
Enhancement: ERS - Option to limit ERS to external perimeters and overhangs only (#7399)
* Option to limit ERS to external perimeters and overhangs only * Label name * Label update * Merge branch 'main' into Limit-ERS-to-external-perimeters-and-overhangs * Merge branch 'main' into Limit-ERS-to-external-perimeters-and-overhangs * Merge branch 'SoftFever:main' into Limit-ERS-to-external-perimeters-and-overhangs * Merge branch 'SoftFever:main' into Limit-ERS-to-external-perimeters-and-overhangs * Merge branch 'main' into Limit-ERS-to-external-perimeters-and-overhangs * Merge branch 'SoftFever:main' into Limit-ERS-to-external-perimeters-and-overhangs * Merge branch 'main' into Limit-ERS-to-external-perimeters-and-overhangs * Merge branch 'SoftFever:main' into Limit-ERS-to-external-perimeters-and-overhangs * Merge branch 'main' into Limit-ERS-to-external-perimeters-and-overhangs
This commit is contained in:
parent
67cc143916
commit
bb009eaa99
8 changed files with 23 additions and 3 deletions
|
@ -497,6 +497,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co
|
|||
int have_volumetric_extrusion_rate_slope_segment_length = config->option<ConfigOptionInt>("max_volumetric_extrusion_rate_slope_segment_length")->value;
|
||||
toggle_field("enable_arc_fitting", !have_volumetric_extrusion_rate_slope);
|
||||
toggle_line("max_volumetric_extrusion_rate_slope_segment_length", have_volumetric_extrusion_rate_slope);
|
||||
toggle_line("extrusion_rate_smoothing_external_perimeter_only", have_volumetric_extrusion_rate_slope);
|
||||
if(have_volumetric_extrusion_rate_slope) config->set_key_value("enable_arc_fitting", new ConfigOptionBool(false));
|
||||
if(have_volumetric_extrusion_rate_slope_segment_length==0) {
|
||||
DynamicPrintConfig new_conf = *config;
|
||||
|
|
|
@ -2215,6 +2215,7 @@ void TabPrint::build()
|
|||
optgroup = page->new_optgroup(L("Advanced"), L"param_advanced", 15);
|
||||
optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope", "extrusion-rate-smoothing");
|
||||
optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope_segment_length", "extrusion-rate-smoothing");
|
||||
optgroup->append_single_option_line("extrusion_rate_smoothing_external_perimeter_only", "extrusion-rate-smoothing");
|
||||
|
||||
page = add_options_page(L("Support"), "custom-gcode_support"); // ORCA: icon only visible on placeholders
|
||||
optgroup = page->new_optgroup(L("Support"), L"param_support");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue