diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index b73157460..b844c05e5 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -868,29 +868,29 @@ void PrintConfigDef::init_fff_params() def = this->add("extruder_clearance_height_to_rod", coFloat); def->label = L("Height to rod"); - def->tooltip = L("Height of the clearance cylinder around extruder. " - "Used as input of auto-arrange to avoid collision when print object by object"); + def->tooltip = L("Distance of the nozzle tip to the lower rod. " + "Used as input of auto-arranging to avoid collision when printing by object"); def->sidetext = L("mm"); def->min = 0; - def->mode = comDevelop; + def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(40)); // BBS def = this->add("extruder_clearance_height_to_lid", coFloat); def->label = L("Height to lid"); - def->tooltip = L("Height of the clearance cylinder around extruder. " - "Used as input of auto-arrange to avoid collision when print object by object"); + def->tooltip = L("Distance of the nozzle tip to the lid. " + "Used as input of auto-arranging to avoid collision when printing by object"); def->sidetext = L("mm"); def->min = 0; - def->mode = comDevelop; + def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(120)); def = this->add("extruder_clearance_radius", coFloat); def->label = L("Radius"); - def->tooltip = L("Clearance radius around extruder. Used as input of auto-arrange to avoid collision when print object by object"); + def->tooltip = L("Clearance radius around extruder. Used as input of auto-arranging to avoid collision when printing by object"); def->sidetext = L("mm"); def->min = 0; - def->mode = comDevelop; + def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(40)); def = this->add("extruder_colour", coStrings); diff --git a/src/slic3r/GUI/ConfigManipulation.cpp b/src/slic3r/GUI/ConfigManipulation.cpp index e800a4b32..9d85b1105 100644 --- a/src/slic3r/GUI/ConfigManipulation.cpp +++ b/src/slic3r/GUI/ConfigManipulation.cpp @@ -555,9 +555,9 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co for (auto el : { "ironing_flow", "ironing_spacing", "ironing_speed" }) toggle_field(el, has_ironing); - bool have_sequential_printing = (config->opt_enum("print_sequence") == PrintSequence::ByObject); - for (auto el : { "extruder_clearance_radius", "extruder_clearance_height_to_rod", "extruder_clearance_height_to_lid" }) - toggle_field(el, have_sequential_printing); + // bool have_sequential_printing = (config->opt_enum("print_sequence") == PrintSequence::ByObject); + // for (auto el : { "extruder_clearance_radius", "extruder_clearance_height_to_rod", "extruder_clearance_height_to_lid" }) + // toggle_field(el, have_sequential_printing); bool have_ooze_prevention = config->opt_bool("ooze_prevention"); toggle_field("standby_temperature_delta", have_ooze_prevention); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index d73d0d977..d3d19f2ad 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1915,19 +1915,7 @@ void TabPrint::build() optgroup->append_single_option_line("print_sequence"); optgroup->append_single_option_line("spiral_mode", "spiral-vase"); optgroup->append_single_option_line("timelapse_type", "Timelapse"); - //BBS: todo remove clearance to machine -#if 0 - //line = { L("Extruder radius"), "" }; - //line.append_option(optgroup->get_option("extruder_clearance_radius")); - //optgroup->append_line(line); - ////BBS: new line for extruder_clearance_height_to_lid as there is not enough space for a single line - //line = { L("Height to rod"), "" }; - //line.append_option(optgroup->get_option("extruder_clearance_height_to_rod")); - //optgroup->append_line(line); - //line = { L("Height to lid"), "" }; - //line.append_option(optgroup->get_option("extruder_clearance_height_to_lid")); - //optgroup->append_line(line); -#endif + optgroup->append_single_option_line("fuzzy_skin"); optgroup->append_single_option_line("fuzzy_skin_point_distance"); optgroup->append_single_option_line("fuzzy_skin_thickness"); @@ -2855,6 +2843,11 @@ void TabPrinter::build_fff() optgroup->append_single_option_line("machine_load_filament_time"); optgroup->append_single_option_line("machine_unload_filament_time"); + optgroup = page->new_optgroup(L("Extruder Clearance")); + optgroup->append_single_option_line("extruder_clearance_radius"); + optgroup->append_single_option_line("extruder_clearance_height_to_rod"); + optgroup->append_single_option_line("extruder_clearance_height_to_lid"); + optgroup = page->new_optgroup(L("Accessory") /*, L"param_accessory"*/); optgroup->append_single_option_line("nozzle_type"); optgroup->append_single_option_line("auxiliary_fan");