diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index d681960d4..2840a0844 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,7 +1,7 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "01.10.00.03", + "version": "01.10.00.07", "force_update": "0", "description": "the initial version of BBL configurations", "machine_model_list": [ diff --git a/resources/profiles/BBL/process/fdm_process_common.json b/resources/profiles/BBL/process/fdm_process_common.json index a87dc0798..edba3030d 100644 --- a/resources/profiles/BBL/process/fdm_process_common.json +++ b/resources/profiles/BBL/process/fdm_process_common.json @@ -69,5 +69,6 @@ "xy_contour_compensation": "0", "compatible_printers": [], "smooth_coefficient": "80", - "overhang_totally_speed": "19" + "overhang_totally_speed": "19", + "scarf_angle_threshold": "155" } \ No newline at end of file diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 58d86adf6..f90f29c6a 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3000,7 +3000,7 @@ void PrintConfigDef::init_fff_params() def->sidetext = L("°"); def->min = 0; def->max = 180; - def->set_default_value(new ConfigOptionInt(0)); + def->set_default_value(new ConfigOptionInt(155)); def = this->add("seam_slope_entire_loop", coBool); def->label = L("Scarf around entire wall");