ENH: provide filament_start and end gcode options

Requirement from user to set filament_start_gcode
and filament_end_gcode. Set these two settings to
advanced mode

Signed-off-by: salt.wei <salt.wei@bambulab.com>
Change-Id: I0d8ddb394b37614d0ef0f10f8434553cb20e9ffd
This commit is contained in:
salt.wei 2022-08-08 10:25:19 +08:00 committed by Yifan Wu
parent 49fc813383
commit 7fb886a03c
3 changed files with 3 additions and 6 deletions

View file

@ -722,7 +722,7 @@ void PrintConfigDef::init_fff_params()
def->multiline = true;
def->full_width = true;
def->height = 120;
def->mode = comDevelop;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionStrings { " " });
auto def_top_fill_pattern = def = this->add("top_surface_pattern", coEnum);
@ -2016,7 +2016,7 @@ void PrintConfigDef::init_fff_params()
def->multiline = true;
def->full_width = true;
def->height = 12;
def->mode = comDevelop;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionStrings { " " });
def = this->add("single_extruder_multi_material", coBool);